blob: 1a0616f70adf5f8cc8086765ef28a11b1b7a08b9 [file] [log] [blame]
Russ Cox80803842012-02-16 23:49:59 -05001// errorcheck
Russ Cox8133cb32011-04-28 13:14:35 -04002
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2011 The Go Authors. All rights reserved.
Russ Cox8133cb32011-04-28 13:14:35 -04004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Issue 1722.
8
9// Check that the error messages says
10// bug337.go:16: len("foo") not used
11// and not
12// bug337.go:16: 3 not used
13
14package main
15
16func main() {
Ian Lance Taylorc55d0c42011-09-20 09:31:07 -070017 len("foo") // ERROR "len|value computed is not used"
Russ Cox8133cb32011-04-28 13:14:35 -040018}
19