2012-02-16 21:49:59 -07:00
|
|
|
// errorcheck
|
2011-11-28 10:22:15 -07:00
|
|
|
|
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Issue 2452.
|
|
|
|
|
|
|
|
// Check that the error messages says
|
2011-12-07 14:18:50 -07:00
|
|
|
// bug378.go:17: 1 + 2 not used
|
2011-11-28 10:22:15 -07:00
|
|
|
// and not
|
|
|
|
// bug378.go:17: 1 not used
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
2013-02-01 19:13:41 -07:00
|
|
|
1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
|
2011-11-28 10:22:15 -07:00
|
|
|
}
|