summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug175.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug175.go')
-rw-r--r--test/fixedbugs/bug175.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug175.go b/test/fixedbugs/bug175.go
index a8f6e3ca4..1ca141507 100644
--- a/test/fixedbugs/bug175.go
+++ b/test/fixedbugs/bug175.go
@@ -10,5 +10,5 @@ func f() (int, bool) { return 0, true }
func main() {
x, y := f(), 2; // ERROR "multi"
+ _, _ = x, y
}
-