summaryrefslogtreecommitdiff
path: root/test
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
commita5906fdac49996df7009c1ab4c60683df9e1469f (patch)
tree4d266b7eb702e5971043610ead061e95c84f0e8f /test
parentefd6ae7278334d7f37762b136a1d160f2da24ed5 (diff)
downloadgo-a5906fdac49996df7009c1ab4c60683df9e1469f.tar.gz
cmd/gc: blank methods are not permitted in interface types
Fixes issue 6606. LGTM=rsc R=rsc CC=golang-codereviews, gri https://codereview.appspot.com/156210044
Diffstat (limited to 'test')
-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 36fa1a422..b10d02f24 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 81eb6cb3c..d40a15138 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 {