summaryrefslogtreecommitdiff
path: root/test/interface10.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/interface10.go')
-rw-r--r--test/interface10.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/interface10.go b/test/interface10.go
index 6afd42a2f..f84da58ed 100644
--- a/test/interface10.go
+++ b/test/interface10.go
@@ -6,6 +6,8 @@
package main
+import "os"
+
const Value = 1e12
type Inter interface { M() int64 }
@@ -73,6 +75,6 @@ func main() {
if !ok {
println("BUG: interface10");
- sys.Exit(1)
+ os.Exit(1)
}
}