modernc.org/gc@v1.0.1-0.20240304020402-f0dba7c97c2b/testdata/errchk/test/fixedbugs/issue5957.dir/c.go (about) 1 package p 2 3 import ( 4 "./a" // ERROR "imported and not used: \x22a\x22 as surprise|imported and not used: surprise" 5 "./b" // ERROR "imported and not used: \x22b\x22 as surprise2|imported and not used: surprise2" 6 b "./b" // ERROR "imported and not used: \x22b\x22$|imported and not used: surprise2" 7 foo "math" // ERROR "imported and not used: \x22math\x22 as foo|imported and not used: math" 8 "fmt" // actually used 9 "strings" // ERROR "imported and not used: \x22strings\x22|imported and not used: strings" 10 ) 11 12 var _ = fmt.Printf