diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
commit | 3e45412327a2654a77944249962b3652e6142299 (patch) | |
tree | bc3bf69452afa055423cbe0c5cfa8ca357df6ccf /test/import1.go | |
parent | c533680039762cacbc37db8dc7eed074c3e497be (diff) | |
download | golang-upstream/2011.01.12.tar.gz |
Imported Upstream version 2011.01.12upstream/2011.01.12
Diffstat (limited to 'test/import1.go')
-rw-r--r-- | test/import1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/import1.go b/test/import1.go index 351462a26..8bb2a94a2 100644 --- a/test/import1.go +++ b/test/import1.go @@ -12,6 +12,6 @@ import "bufio" // GCCGO_ERROR "previous|not used" import bufio "os" // ERROR "redeclared|redefinition|incompatible" import ( - "fmt"; // GCCGO_ERROR "previous|not used" - fmt "math"; // ERROR "redeclared|redefinition|incompatible" + "fmt" // GCCGO_ERROR "previous|not used" + fmt "math" // ERROR "redeclared|redefinition|incompatible" ) |