mirror of
https://github.com/golang/go
synced 2024-11-05 14:56:10 -07:00
f2e94b58a0
Fixes #6406. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/46900043
13 lines
271 B
Go
13 lines
271 B
Go
// errorcheck
|
|
|
|
// Copyright 2014 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 main
|
|
|
|
func main() {
|
|
s = "bob" // ERROR "undefined.*s"
|
|
_ = s // ERROR "undefined.*s"
|
|
}
|