honnef.co/go/tools@v0.4.7/staticcheck/testdata/src/example.com/CheckBenchmarkN/CheckBenchmarkN.go (about)

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