mirror of
https://github.com/golang/go
synced 2024-11-02 09:28:34 +00:00
0e01db4b8d
Fixes #11361. Change-Id: I70b8808f97f0e07de680e7e6ede1322ea0fdbbc0 Reviewed-on: https://go-review.googlesource.com/21936 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
11 lines
305 B
Go
11 lines
305 B
Go
// errorcheck
|
|
|
|
// Copyright 2016 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.
|
|
|
|
package a
|
|
|
|
import "fmt" // ERROR "imported and not used"
|
|
|
|
const n = fmt // ERROR "fmt without selector" "fmt is not a constant"
|