github.com/serversong/goreporter@v0.0.0-20200325104552-3cfaf44fd178/linters/staticcheck/testdata/CheckBenchmarkN.go (about)

     1  package foo
     2  
     3  import "testing"
     4  
     5  func foo() {
     6  	var b *testing.B
     7  	b.N = 1 // MATCH /should not assign to b.N/
     8  	_ = b
     9  }