trailing comma's are not accepted with current syntax

R=rsc, ken2
https://golang.org/cl/174047
This commit is contained in:
Robert Griesemer 2009-12-10 13:14:44 -08:00
parent b301351df9
commit 9bf0aab938

View file

@ -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;
}