summaryrefslogtreecommitdiff
path: root/test/ken
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-12-10 13:14:44 -0800
committerRobert Griesemer <gri@golang.org>2009-12-10 13:14:44 -0800
commite82c358f533d26ba987a17be56bea40385ad6788 (patch)
treecf0086f4031ee2acf761e8d2d2d5b2c29f8d09dd /test/ken
parentcfd516af34977145a8280b228d1e1681be368862 (diff)
downloadgo-e82c358f533d26ba987a17be56bea40385ad6788.tar.gz
trailing comma's are not accepted with current syntax
R=rsc, ken2 http://codereview.appspot.com/174047
Diffstat (limited to 'test/ken')
-rw-r--r--test/ken/chan1.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ken/chan1.go b/test/ken/chan1.go
index 0008e314b..d4c4f460f 100644
--- a/test/ken/chan1.go
+++ b/test/ken/chan1.go
@@ -22,8 +22,7 @@ r(c chan int, m int) {
panicln("r",
"m=", m,
"r=", r,
- "h=", h[r],
- );
+ "h=", h[r]);
}
h[r] = 2;
}