Commit 48b1e6bc authored by Shenghou Ma's avatar Shenghou Ma Committed by Minux Ma

test: gofmt fixedbugs/issue10975.go

Change-Id: I772d1bc3e394cdd707f210f2aaff77100d299e24
Reviewed-on: https://go-review.googlesource.com/15380Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent cfb116d4
......@@ -4,16 +4,15 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Issue 10975: Returning an invalid interface would cause
// `internal compiler error: getinarg: not a func`.
// Issue 10975: Returning an invalid interface would cause
// `internal compiler error: getinarg: not a func`.
package main
type I interface {
int // ERROR "interface contains embedded non-interface int"
int // ERROR "interface contains embedded non-interface int"
}
func New() I {
return struct{}{}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment