diff options
| author | Russ Cox <rsc@golang.org> | 2009-02-13 14:48:32 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-02-13 14:48:32 -0800 |
| commit | 526837026995aa88a05eb73f83f8573d5c024882 (patch) | |
| tree | a3b6c6ab9f68981976738f0efc7988353d5a0d82 /test/fixedbugs/bug098.go | |
| parent | c2feca8a8dd68958c476a71b1e07b5cf43421a98 (diff) | |
| download | golang-526837026995aa88a05eb73f83f8573d5c024882.tar.gz | |
convert composite literals from { } to ( ).
only non-trivial changes are in
convlit1.go
golden.out
R=gri
OCL=25019
CL=25024
Diffstat (limited to 'test/fixedbugs/bug098.go')
| -rw-r--r-- | test/fixedbugs/bug098.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug098.go b/test/fixedbugs/bug098.go index 8e790a709..09daf3f89 100644 --- a/test/fixedbugs/bug098.go +++ b/test/fixedbugs/bug098.go @@ -10,8 +10,8 @@ type A []int; type M map[int] int; func main() { - var a *A = &A{0}; - var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line) + var a *A = &A(0); + var m *M = &M(0 : 0); // should be legal to use & here for consistency with other composite constructors (prev. line) } /* |
