commit | be2edb57614dd5a92294b7d29a34de754998fde5 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Tue Mar 03 08:39:12 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Tue Mar 03 08:39:12 2009 -0800 |
tree | 028f4f1a5f6b78795c1a1ef840b49c7da342edd1 | |
parent | e8b43190bbec4b3b445739c216a0f4e023a9442f [diff] [blame] |
Automated g4 rollback of changelist 25024, plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
diff --git a/test/fixedbugs/bug102.go b/test/fixedbugs/bug102.go index 87ec65e..5848097 100644 --- a/test/fixedbugs/bug102.go +++ b/test/fixedbugs/bug102.go
@@ -12,7 +12,7 @@ if s != "" { panic("bad convert") } - var b1 = [5]byte('h', 'e', 'l', 'l', 'o'); + var b1 = [5]byte{'h', 'e', 'l', 'l', 'o'}; if string(b1) != "hello" { panic("bad convert 1") }