aboutsummaryrefslogtreecommitdiff
path: root/test/convlit1.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-03-03 08:39:12 -0800
committerRuss Cox <rsc@golang.org>2009-03-03 08:39:12 -0800
commitbe2edb57614dd5a92294b7d29a34de754998fde5 (patch)
tree028f4f1a5f6b78795c1a1ef840b49c7da342edd1 /test/convlit1.go
parente8b43190bbec4b3b445739c216a0f4e023a9442f (diff)
downloadgo-be2edb57614dd5a92294b7d29a34de754998fde5.tar.gz
go-be2edb57614dd5a92294b7d29a34de754998fde5.zip
Automated g4 rollback of changelist 25024,
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
Diffstat (limited to 'test/convlit1.go')
-rw-r--r--test/convlit1.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/convlit1.go b/test/convlit1.go
index 19f98efbd7..94d28969b7 100644
--- a/test/convlit1.go
+++ b/test/convlit1.go
@@ -6,7 +6,8 @@
package main
-var a = []int ( "a" ); // ERROR "conver|incompatible"
+var a = []int { "a" }; // ERROR "conver|incompatible"
+var b = int { 1 }; // ERROR "compos"
func f() int