]> Cypherpunks repositories - gostls13.git/commitdiff
update missed test case to {}
authorRob Pike <r@golang.org>
Wed, 4 Mar 2009 00:09:12 +0000 (16:09 -0800)
committerRob Pike <r@golang.org>
Wed, 4 Mar 2009 00:09:12 +0000 (16:09 -0800)
R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=25648
CL=25654

test/fixedbugs/bug074.go

index 87008f084dcaeea6b011de7beaf3d63de290cdd7..d9865c579c2a0ba6518afc8efa874bd48b6a3d1b 100644 (file)
@@ -7,6 +7,6 @@
 package main
 
 func main() {
-       x := string('a', 'b', '\n');
+       x := string{'a', 'b', '\n'};
        print(x);
 }