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/if1.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/if1.go')
-rw-r--r-- | test/if1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/if1.go b/test/if1.go index 3f3ef1597..061c36411 100644 --- a/test/if1.go +++ b/test/if1.go @@ -9,12 +9,12 @@ package main import "os" func main() { - count := 7; + count := 7 if one := 1; { count = count + one } if count != 8 { - print(count, " should be 8\n"); + print(count, " should be 8\n") os.Exit(1) } } |