summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug143.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug143.go')
-rw-r--r--test/fixedbugs/bug143.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixedbugs/bug143.go b/test/fixedbugs/bug143.go
index cb8631051..af9607506 100644
--- a/test/fixedbugs/bug143.go
+++ b/test/fixedbugs/bug143.go
@@ -29,7 +29,8 @@ func main() {
{
var x int;
var ok bool;
- x, ok = f()["key"]
+ x, ok = f()["key"];
+ _, _ = x, ok;
}
}