summaryrefslogtreecommitdiff
path: root/test/ken/simpvar.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-08-11 22:07:49 -0700
committerRob Pike <r@golang.org>2008-08-11 22:07:49 -0700
commitbc2f5f1dce1687d0aff0d51ea1b56a5d52aa3891 (patch)
tree9d0faf1d96579f8c9fb0321586cab7c5149ccdf1 /test/ken/simpvar.go
parent7293dab5a9e4d0fb4b66fd76bab2572bbebc050d (diff)
downloadgo-git-bc2f5f1dce1687d0aff0d51ea1b56a5d52aa3891.tar.gz
fix bug depot:
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
Diffstat (limited to 'test/ken/simpvar.go')
-rw-r--r--test/ken/simpvar.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ken/simpvar.go b/test/ken/simpvar.go
index 2dd4e73acd..396ea7b4c9 100644
--- a/test/ken/simpvar.go
+++ b/test/ken/simpvar.go
@@ -21,5 +21,5 @@ main()
y = 25;
}
x = x+y;
- if(x != 40) { panic x; }
+ if(x != 40) { panic(x); }
}