blob: 5491193ef31b56ff0d4cabab341f8d82724f9990 [file] [log] [blame]
// 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"
}