Commit 9bf0aab9 authored by Robert Griesemer's avatar Robert Griesemer

trailing comma's are not accepted with current syntax

R=rsc, ken2
https://golang.org/cl/174047
parent b301351d
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment