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

     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  }