aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue14010.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue14010.go')
-rw-r--r--test/fixedbugs/issue14010.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue14010.go b/test/fixedbugs/issue14010.go
index 2786e107e8..0b233342be 100644
--- a/test/fixedbugs/issue14010.go
+++ b/test/fixedbugs/issue14010.go
@@ -10,6 +10,6 @@
package main
func main() {
- true = false // ERROR "cannot assign to true"
- byte = 0 // ERROR "not an expression"
+ true = false // ERROR "cannot assign to true|invalid left hand side"
+ byte = 0 // ERROR "not an expression|invalid left hand side|invalid use of type"
}