diff options
| author | Ian Lance Taylor <iant@golang.org> | 2009-12-15 13:57:24 -0800 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2009-12-15 13:57:24 -0800 |
| commit | 84e7cb0611d439dc181a279c8650b700dd1735ca (patch) | |
| tree | da8c30877cb18a2f43f54e1f19d3bae99f194f91 | |
| parent | 82747423937fa5c65b7f33af496505a3f77bedc8 (diff) | |
| download | go-84e7cb0611d439dc181a279c8650b700dd1735ca.tar.xz | |
Tweak test to work with both 6g and gccgo.
Pull the struct into a single line, since 6g reports the error
on the last line of the struct definition and gccgo reports it
on the first line.
6g:
bug215.go:12: invalid recursive type A
gccgo:
bug215.go:12:6: error: invalid recursive type ‘A’
R=rsc
https://golang.org/cl/180044
| -rw-r--r-- | test/fixedbugs/bug215.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/fixedbugs/bug215.go b/test/fixedbugs/bug215.go index d58786c16a..8f7fb2d3c2 100644 --- a/test/fixedbugs/bug215.go +++ b/test/fixedbugs/bug215.go @@ -9,8 +9,6 @@ package main -type A struct { - a A; -} // ERROR "recursive" +type A struct { a A } // ERROR "recursive" func foo() { new(A).bar() } func (a A) bar() {} |
