honnef.co/go/tools@v0.5.0-0.dev.0.20240520180541-dcae280a5e87/staticcheck/sa4016/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  }