aboutsummaryrefslogtreecommitdiff
path: root/test/interface
diff options
context:
space:
mode:
authorChris Manghane <cmang@golang.org>2014-10-15 09:55:13 -0700
committerChris Manghane <cmang@golang.org>2014-10-15 09:55:13 -0700
commitdb4dad7fd7f8d95ffb0c8e07de150015172d5853 (patch)
tree7f709ba14f9cd65ba306af95ba5eb3ef868f0a67 /test/interface
parent42c3130780327299cb8a89f30b8e5c3d6b96d2c2 (diff)
downloadgo-db4dad7fd7f8d95ffb0c8e07de150015172d5853.tar.gz
go-db4dad7fd7f8d95ffb0c8e07de150015172d5853.zip
cmd/gc: blank methods are not permitted in interface types
Fixes #6606. LGTM=rsc R=rsc CC=golang-codereviews, gri https://golang.org/cl/156210044
Diffstat (limited to 'test/interface')
-rw-r--r--test/interface/explicit.go4
-rw-r--r--test/interface/fail.go14
2 files changed, 2 insertions, 16 deletions
diff --git a/test/interface/explicit.go b/test/interface/explicit.go
index 36fa1a4224..b10d02f248 100644
--- a/test/interface/explicit.go
+++ b/test/interface/explicit.go
@@ -83,12 +83,12 @@ var m4 = M(jj) // ERROR "invalid|wrong type for M method"
type B1 interface {
- _()
+ _() // ERROR "methods must have a unique non-blank name"
}
type B2 interface {
M()
- _()
+ _() // ERROR "methods must have a unique non-blank name"
}
type T2 struct{}
diff --git a/test/interface/fail.go b/test/interface/fail.go
index 81eb6cb3c1..d40a151383 100644
--- a/test/interface/fail.go
+++ b/test/interface/fail.go
@@ -14,7 +14,6 @@ type I interface {
func main() {
shouldPanic(p1)
- shouldPanic(p2)
}
func p1() {
@@ -30,19 +29,6 @@ type S struct{}
func (s *S) _() {}
-type B interface {
- _()
-}
-
-func p2() {
- var s *S
- var b B
- var e interface{}
- e = s
- b = e.(B)
- _ = b
-}
-
func shouldPanic(f func()) {
defer func() {
if recover() == nil {