gitee.com/wgliang/goreporter@v0.0.0-20180902115603-df1b20f7c5d0/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  }