aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue20749.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue20749.go')
-rw-r--r--test/fixedbugs/issue20749.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue20749.go b/test/fixedbugs/issue20749.go
index af9ff3fbed..de2d3ad16a 100644
--- a/test/fixedbugs/issue20749.go
+++ b/test/fixedbugs/issue20749.go
@@ -9,7 +9,7 @@ package p
// Verify that the compiler complains even if the array
// has length 0.
var a [0]int
-var _ = a[2:] // ERROR "invalid slice index 2"
+var _ = a[2:] // ERROR "invalid slice index 2|array index out of bounds"
var b [1]int
-var _ = b[2:] // ERROR "invalid slice index 2"
+var _ = b[2:] // ERROR "invalid slice index 2|array index out of bounds"