blob: f9700cd04aef4394cd45787d05db5e856961c909 [file] [log] [blame]
package a
type Good struct {
y int32
x byte
z byte
}
type Bad struct { // want "struct of size 12 could be 8"
x byte
y int32
z byte
}