summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug120.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug120.go')
-rw-r--r--test/fixedbugs/bug120.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixedbugs/bug120.go b/test/fixedbugs/bug120.go
index 10e28034d..06a07e805 100644
--- a/test/fixedbugs/bug120.go
+++ b/test/fixedbugs/bug120.go
@@ -6,6 +6,7 @@
package main
+import "os"
import "strconv";
type Test struct {
@@ -53,6 +54,6 @@ func main() {
}
}
if !ok {
- sys.Exit(1);
+ os.Exit(1);
}
}