Change-Id: I772d1bc3e394cdd707f210f2aaff77100d299e24
Reviewed-on: https://go-review.googlesource.com/15380
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
// 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{}{}
}
-