1184610Salfred// Copyright 2013 The Go Authors.  All rights reserved.
2184610Salfred// Use of this source code is governed by a BSD-style
3184610Salfred// license that can be found in the LICENSE file.
4184610Salfred
5184610Salfredpackage p
6184610Salfred
7184610Salfredimport "unsafe"
8184610Salfred
9184610Salfredtype S2 struct {}
10184610Salfred
11184610Salfredconst C = unsafe.Sizeof(S2{})
12184610Salfred
13184610Salfredtype S1 struct {
14184610Salfred	S2
15184610Salfred}
16184610Salfred