blob: 8f609e634dd8179d53afc3ead85195e025d1a10d [file] [log] [blame]
Keith Randalld603c272016-05-18 13:04:00 -07001// compile
2
3// Copyright 2016 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9type S struct {
10 a [1 << 16]byte
11}
12
13func f1() {
14 p := &S{}
15 _ = p
16}
17
18type T [1 << 16]byte
19
20func f2() {
21 p := &T{}
22 _ = p
23}