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:
Shenghou Ma 2015-10-03 21:23:23 -04:00 committed by Minux Ma
parent cfb116d453
commit 48b1e6bc97
1 changed files with 3 additions and 4 deletions

View File

@ -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{}{}
} }