2012-02-16 21:49:30 -07:00
|
|
|
// errorcheck
|
2009-12-15 17:22:04 -07:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2009-12-15 17:22:04 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var t testing.T
|
2020-08-24 02:23:27 -06:00
|
|
|
|
2009-12-15 17:22:04 -07:00
|
|
|
// make sure error mentions that
|
2011-12-20 10:51:39 -07:00
|
|
|
// name is unexported, not just "name not found".
|
2009-12-15 17:22:04 -07:00
|
|
|
|
2020-12-09 21:14:07 -07:00
|
|
|
t.common.name = nil // ERROR "unexported|undefined"
|
2020-08-24 02:23:27 -06:00
|
|
|
|
2020-12-09 21:14:07 -07:00
|
|
|
println(testing.anyLowercaseName("asdf")) // ERROR "unexported|undefined"
|
2009-12-15 17:22:04 -07:00
|
|
|
}
|