blob: 750f83147a30af18bc75f9d8c7d1b21589b7b797 [file] [log] [blame]
package a
type ZeroGood struct {
a [0]byte
b uint32
}
type ZeroBad struct {
b [0]byte
a uint32
}