Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckBenchmarkN / CheckBenchmarkN.go
1 package foo
2
3 import "testing"
4
5 func foo() {
6         var b *testing.B
7         b.N = 1 // want `should not assign to b\.N`
8         _ = b
9 }