mirror of
https://github.com/golang/go
synced 2024-11-22 07:14:40 -07:00
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
This commit is contained in:
parent
8274742393
commit
84e7cb0611
@ -9,8 +9,6 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
type A struct {
|
type A struct { a A } // ERROR "recursive"
|
||||||
a A;
|
|
||||||
} // ERROR "recursive"
|
|
||||||
func foo() { new(A).bar() }
|
func foo() { new(A).bar() }
|
||||||
func (a A) bar() {}
|
func (a A) bar() {}
|
||||||
|
Loading…
Reference in New Issue
Block a user