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/blank1.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/blank1.go')
-rw-r--r-- | test/blank1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/blank1.go b/test/blank1.go index 2fa6e9f8f..5bc1efce5 100644 --- a/test/blank1.go +++ b/test/blank1.go @@ -7,6 +7,6 @@ package _ // ERROR "invalid package name _" func main() { - _(); // ERROR "cannot use _ as value" - x := _+1; // ERROR "cannot use _ as value" + _() // ERROR "cannot use _ as value" + x := _+1 // ERROR "cannot use _ as value" } |