github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/test/fixedbugs/issue5957.dir/c.go (about) 1 package p 2 3 import ( 4 "./a" // ERROR "imported and not used: \x22a\x22 as surprise" 5 "./b" // ERROR "imported and not used: \x22b\x22 as surprise2" 6 b "./b" // ERROR "imported and not used: \x22b\x22$" 7 foo "math" // ERROR "imported and not used: \x22math\x22 as foo" 8 "fmt" // actually used 9 "strings" // ERROR "imported and not used: \x22strings\x22" 10 ) 11 12 var _ = fmt.Printf