github.com/chenfeining/golangci-lint@v1.0.2-0.20230730162517-14c6c67868df/test/testdata/maligned.go (about)

     1  //golangcitest:args -Emaligned --internal-cmd-test
     2  package testdata
     3  
     4  type BadAlignedStruct struct { // want "struct of size 24 bytes could be of size 16 bytes"
     5  	B  bool
     6  	I  int
     7  	B2 bool
     8  }