github.com/nozzle/golangci-lint@v1.49.0-nz3/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  }