diff options
Diffstat (limited to 'test/fixedbugs/bug357.go')
-rw-r--r-- | test/fixedbugs/bug357.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug357.go b/test/fixedbugs/bug357.go index 2ac64a80b..ceb2009be 100644 --- a/test/fixedbugs/bug357.go +++ b/test/fixedbugs/bug357.go @@ -15,7 +15,7 @@ func bla1() bool { func bla5() bool { _ = 1 - false // ERROR "false not used|value computed is not used" + false // ERROR "false evaluated but not used|value computed is not used" _ = 2 return false } |