aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue30085.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue30085.go')
-rw-r--r--test/fixedbugs/issue30085.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/issue30085.go b/test/fixedbugs/issue30085.go
index 8223c855cd..d2ac4cfbfa 100644
--- a/test/fixedbugs/issue30085.go
+++ b/test/fixedbugs/issue30085.go
@@ -7,6 +7,6 @@
package main
func main() {
- var c, d = 1, 2, 3 // ERROR "assignment mismatch: 2 variables but 3 values"
- var e, f, g = 1, 2 // ERROR "assignment mismatch: 3 variables but 2 values"
+ var c, d = 1, 2, 3 // ERROR "assignment mismatch: 2 variables but 3 values|wrong number of initializations"
+ var e, f, g = 1, 2 // ERROR "assignment mismatch: 3 variables but 2 values|wrong number of initializations"
}