From: Rob Pike Date: Wed, 4 Mar 2009 00:09:12 +0000 (-0800) Subject: update missed test case to {} X-Git-Tag: weekly.2009-11-06~2118 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5ef8e1d47e98f5ccea2331a9520baede9401cc75;p=gostls13.git update missed test case to {} R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=25648 CL=25654 --- diff --git a/test/fixedbugs/bug074.go b/test/fixedbugs/bug074.go index 87008f084d..d9865c579c 100644 --- a/test/fixedbugs/bug074.go +++ b/test/fixedbugs/bug074.go @@ -7,6 +7,6 @@ package main func main() { - x := string('a', 'b', '\n'); + x := string{'a', 'b', '\n'}; print(x); }