]> Cypherpunks repositories - gostls13.git/commitdiff
go/types: update test case to exercise mutually recursive interfaces
authorRob Findley <rfindley@google.com>
Mon, 6 Jul 2020 20:45:46 +0000 (16:45 -0400)
committerRobert Findley <rfindley@google.com>
Mon, 24 Aug 2020 16:41:53 +0000 (16:41 +0000)
Due to a typo, this test case was not actually exercising the bug
described in golang/go#33656. Update it to do so. Interestingly, the
comparison is now valid (as it should be) -- I suspect #33656 is
actually fixed.

Fixes #33656

Change-Id: If50a917f6477d8eb4f82f5a2a96bf5d9123ff0d4
Reviewed-on: https://go-review.googlesource.com/c/go/+/241263
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
src/go/types/testdata/cycles2.src

index 5fd9e838b60b1f631ae359acf7315b970e44c13a..1a7f40ae4b787e1f2704c9d1cd9913881ce081b1 100644 (file)
@@ -37,7 +37,7 @@ type A interface {
 }
 
 type B interface {
-       a() interface {
+       b() interface {
                AB
        }
 }
@@ -59,8 +59,7 @@ var y interface {
        B
 }
 
-// TODO(gri) This should be a valid compare. See #33656.
-var _ = x /* ERROR cannot compare */ == y
+var _ = x == y
 
 
 // Test case for issue 6638.