diff options
Diffstat (limited to 'test/import4.dir/import4.go')
-rw-r--r-- | test/import4.dir/import4.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/import4.dir/import4.go b/test/import4.dir/import4.go index b9f973f17..f92c663d0 100644 --- a/test/import4.dir/import4.go +++ b/test/import4.dir/import4.go @@ -18,7 +18,7 @@ import X "math" // ERROR "imported and not used.*math" import . "bufio" // ERROR "imported and not used.*bufio" // again, package without anything in it -import "./empty" // ERROR "imported and not used.*empty" -import Z "./empty" // ERROR "imported and not used.*empty" +import "./empty" // GC_ERROR "imported and not used.*empty" +import Z "./empty" // GC_ERROR "imported and not used.*empty" import . "./empty" // ERROR "imported and not used.*empty" |