summaryrefslogtreecommitdiff
path: root/test/ken/mfunc.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
commitd4f4656470e56d7d4dc35ecef1841f989745b24f (patch)
tree9d0faf1d96579f8c9fb0321586cab7c5149ccdf1 /test/ken/mfunc.go
parentdf89d5ea8f7e8d7601dc176b6544206a68b1fe09 (diff)
downloadgo-d4f4656470e56d7d4dc35ecef1841f989745b24f.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/mfunc.go')
-rw-r--r--test/ken/mfunc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ken/mfunc.go b/test/ken/mfunc.go
index 032f75679..ab579e932 100644
--- a/test/ken/mfunc.go
+++ b/test/ken/mfunc.go
@@ -14,7 +14,7 @@ main()
var x,y int;
x,y = simple(10,20,30);
- if x+y != 65 { panic x+y; }
+ if x+y != 65 { panic(x+y); }
}
func