1
0
mirror of https://github.com/golang/go synced 2024-11-22 04:24:39 -07:00

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", panicln("r",
"m=", m, "m=", m,
"r=", r, "r=", r,
"h=", h[r], "h=", h[r]);
);
} }
h[r] = 2; h[r] = 2;
} }