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

update missed test case to {}

R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=25648
CL=25654
This commit is contained in:
Rob Pike 2009-03-03 16:09:12 -08:00
parent 63b332eddd
commit 5ef8e1d47e

View File

@ -7,6 +7,6 @@
package main
func main() {
x := string('a', 'b', '\n');
x := string{'a', 'b', '\n'};
print(x);
}