aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/testdata/fixedbugs/issue45635.go2
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/testdata/fixedbugs/issue45635.go2')
-rw-r--r--src/go/types/testdata/fixedbugs/issue45635.go27
1 files changed, 3 insertions, 4 deletions
diff --git a/src/go/types/testdata/fixedbugs/issue45635.go2 b/src/go/types/testdata/fixedbugs/issue45635.go2
index 3e2cceca2d..fc50797b17 100644
--- a/src/go/types/testdata/fixedbugs/issue45635.go2
+++ b/src/go/types/testdata/fixedbugs/issue45635.go2
@@ -10,10 +10,10 @@ func main() {
type N[T any] struct{}
-var _ N /* ERROR "0 arguments but 1 type parameters" */ []
+var _ N [] // ERROR expected type argument list
type I interface {
- type map[int]int, []int
+ ~[]int
}
func _[T I](i, j int) {
@@ -27,6 +27,5 @@ func _[T I](i, j int) {
_ = s[i, j /* ERROR "more than one index" */ ]
var t T
- // TODO(rFindley) Fix the duplicate error below.
- _ = t[i, j /* ERROR "more than one index" */ /* ERROR "more than one index" */ ]
+ _ = t[i, j /* ERROR "more than one index" */ ]
}