commit | 918afd9491bd07aed10bc364012683fc52c734bb | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Fri May 08 15:21:41 2009 -0700 |
committer | Russ Cox <rsc@golang.org> | Fri May 08 15:21:41 2009 -0700 |
tree | 5b8c80c41b4110b57cef1a0945350c2caf7557e2 | |
parent | c367d1b789b0aed59e871aee588d776998a8f479 [diff] [blame] |
move things out of sys into os and runtime R=r OCL=28569 CL=28573
diff --git a/test/int_lit.go b/test/int_lit.go index 4121070..1f4d318 100644 --- a/test/int_lit.go +++ b/test/int_lit.go
@@ -6,6 +6,8 @@ package main +import "os" + func main() { s := 0 + @@ -18,6 +20,6 @@ 0X123; if s != 788 { print("s is ", s, "; should be 788\n"); - sys.Exit(1); + os.Exit(1); } }