honnef.co/go/tools@v0.5.0-0.dev.0.20240520180541-dcae280a5e87/unused/testdata/src/example.com/index-write/write.go (about) 1 package pkg 2 3 var x int //@ used("x", true) 4 5 func Foo() { //@ used("Foo", true) 6 var s []int //@ used("s", true) 7 s[x] = 0 8 }