aboutsummaryrefslogtreecommitdiff
path: root/test/method7.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2017-12-04 10:59:39 -0800
committerMatthew Dempsky <mdempsky@google.com>2017-12-04 19:29:14 +0000
commit2b9e7c1864c61c900b79deb9528fead33321a402 (patch)
treee66304570e05c0340a38c80cde56f0c3ea87beb8 /test/method7.go
parent88c2fb9d04c1766574581ba5ed6220e30cf6378e (diff)
downloadgo-2b9e7c1864c61c900b79deb9528fead33321a402.tar.gz
go-2b9e7c1864c61c900b79deb9528fead33321a402.zip
test: disable broken test for 1.10
This test was added recently as a regress test for the spec relaxation in #9060, but doesn't work correctly yet. Disable for now to fix noopt builders. Updates #22444. Change-Id: I45c521ae0da7ffb0c6859d6f7220c59828ac6149 Reviewed-on: https://go-review.googlesource.com/81775 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'test/method7.go')
-rw-r--r--test/method7.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/method7.go b/test/method7.go
index 4e1b3c340a..72c88b377d 100644
--- a/test/method7.go
+++ b/test/method7.go
@@ -45,9 +45,8 @@ func main() {
interface{ m1(string) }.m1(x, "d")
want += " m1(d)"
- g := struct{ T }.m2
- _ = g
// cannot link the call below - see #22444
+ // g := struct{ T }.m2
// g(struct{T}{})
// want += " m2()"