1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:34:48 -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",
"m=", m,
"r=", r,
"h=", h[r],
);
"h=", h[r]);
}
h[r] = 2;
}