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 / CheckSillyBitwiseOps_shadowedIota / shadowed.go
1 package pkg
2
3 const iota = 0
4
5 const (
6         a = iota
7 )
8
9 func fn(x int) {
10         _ = x | a
11 }