mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
trailing comma's are not accepted with current syntax
R=rsc, ken2 https://golang.org/cl/174047
This commit is contained in:
parent
b301351df9
commit
9bf0aab938
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue