From: Robert Griesemer Date: Thu, 10 Dec 2009 21:14:44 +0000 (-0800) Subject: trailing comma's are not accepted with current syntax X-Git-Tag: weekly.2009-12-22~100 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9bf0aab938c1ff93902d4e70b022b0431263e883;p=gostls13.git trailing comma's are not accepted with current syntax R=rsc, ken2 https://golang.org/cl/174047 --- diff --git a/test/ken/chan1.go b/test/ken/chan1.go index 0008e314b6..d4c4f460f3 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; }