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 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} 24