Keith Randall | d603c27 | 2016-05-18 13:04:00 -0700 | [diff] [blame] | 1 | // 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 | |||||
7 | package main | ||||
8 | |||||
9 | type S struct { | ||||
10 | a [1 << 16]byte | ||||
11 | } | ||||
12 | |||||
13 | func f1() { | ||||
14 | p := &S{} | ||||
15 | _ = p | ||||
16 | } | ||||
17 | |||||
18 | type T [1 << 16]byte | ||||
19 | |||||
20 | func f2() { | ||||
21 | p := &T{} | ||||
22 | _ = p | ||||
23 | } |