summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug059.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-16 14:58:14 -0800
committerRuss Cox <rsc@golang.org>2009-01-16 14:58:14 -0800
commitc000d2eb1c11999b15772ad582b364604f6f8acf (patch)
tree321251a8cd180ad7856af54e8e531850d0735fb0 /test/fixedbugs/bug059.go
parent969365a06e210a3a3c969a99585e868aecc6af8a (diff)
downloadgolang-c000d2eb1c11999b15772ad582b364604f6f8acf.tar.gz
casify, cleanup sys
R=r OCL=22978 CL=22984
Diffstat (limited to 'test/fixedbugs/bug059.go')
-rw-r--r--test/fixedbugs/bug059.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug059.go b/test/fixedbugs/bug059.go
index 501616b3d..21c078361 100644
--- a/test/fixedbugs/bug059.go
+++ b/test/fixedbugs/bug059.go
@@ -29,6 +29,6 @@ func main() {
a[0] = "x";
m["0"][0] = "deleted";
if m["0"][0] != "deleted" {
- sys.exit(1);
+ sys.Exit(1);
}
}