1
0
mirror of https://github.com/golang/go synced 2024-09-24 05:10:13 -06:00
go/test/fixedbugs/bug479.dir/a.go
2013-09-19 15:20:39 -07:00

16 lines
262 B
Go

// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package p
import "unsafe"
type S2 struct {}
const C = unsafe.Sizeof(S2{})
type S1 struct {
S2
}