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.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug175.go b/test/fixedbugs/bug175.go
index a8f6e3ca4..5fca4b22b 100644
--- a/test/fixedbugs/bug175.go
+++ b/test/fixedbugs/bug175.go
@@ -1,4 +1,4 @@
-// errchk $G $D/$F.go
+// errorcheck
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
@@ -10,5 +10,5 @@ func f() (int, bool) { return 0, true }
func main() {
x, y := f(), 2; // ERROR "multi"
+ _, _ = x, y
}
-