aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug175.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug175.go')
-rw-r--r--test/fixedbugs/bug175.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/fixedbugs/bug175.go b/test/fixedbugs/bug175.go
index 88210a59b3..caf3168536 100644
--- a/test/fixedbugs/bug175.go
+++ b/test/fixedbugs/bug175.go
@@ -9,6 +9,5 @@ package main
func f() (int, bool) { return 0, true }
func main() {
- x, y := f(), 2; // ERROR "multi|2-valued"
- _, _ = x, y
+ x, y := f(), 2 // ERROR "multi|2-valued"
}