Index: test/if1.go |
=================================================================== |
--- a/test/if1.go |
+++ b/test/if1.go |
@@ -9,12 +9,12 @@ |
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) |
} |
} |