mirror of https://github.com/golang/go.git
test: gofmt fixedbugs/issue10975.go
Change-Id: I772d1bc3e394cdd707f210f2aaff77100d299e24 Reviewed-on: https://go-review.googlesource.com/15380 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
cfb116d453
commit
48b1e6bc97
|
|
@ -4,16 +4,15 @@
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// Issue 10975: Returning an invalid interface would cause
|
// Issue 10975: Returning an invalid interface would cause
|
||||||
// `internal compiler error: getinarg: not a func`.
|
// `internal compiler error: getinarg: not a func`.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
type I interface {
|
type I interface {
|
||||||
int // ERROR "interface contains embedded non-interface int"
|
int // ERROR "interface contains embedded non-interface int"
|
||||||
}
|
}
|
||||||
|
|
||||||
func New() I {
|
func New() I {
|
||||||
return struct{}{}
|
return struct{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue