blob: 76d8bb3f09d85e7891e51178b544dae64c6b16e1 [file] [log] [blame]
package a
type Good struct {
y int32
x byte
z byte
}
type Bad struct {
y int32
x byte
z byte
}
type ZeroGood struct {
a [0]byte
b uint32
}
type ZeroBad struct {
b [0]byte
a uint32
}