summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug006.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug006.go')
-rw-r--r--test/fixedbugs/bug006.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug006.go b/test/fixedbugs/bug006.go
index 938a216e2..2fbde9c9a 100644
--- a/test/fixedbugs/bug006.go
+++ b/test/fixedbugs/bug006.go
@@ -13,5 +13,5 @@ const (
func main() {
if g == 0.0 { print("zero\n");}
- if g != 4.5 { print(" fail\n"); sys.exit(1); }
+ if g != 4.5 { print(" fail\n"); sys.Exit(1); }
}