1// errorcheck
2
3// Copyright 2011 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// issue 1993.
8// error used to have last line number in file
9
10package main
11
12func bla1() bool {
13	return false
14}
15
16func bla5() bool {
17	_ = 1
18	false  // ERROR "false evaluated but not used|value computed is not used|is not used"
19	_ = 2
20	return false
21}
22
23func main() {
24	x := bla1()
25	_ = x
26}
27