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
|
|
|
|
|
|
|
|
// 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
|
|
|
|
2016-01-19 14:43:52 -07:00
|
|
|
t.common.name = nil // ERROR "unexported"
|
2009-12-15 17:22:04 -07:00
|
|
|
|
2011-08-16 09:14:26 -06:00
|
|
|
println(testing.anyLowercaseName("asdf")) // ERROR "unexported" "undefined: testing.anyLowercaseName"
|
2009-12-15 17:22:04 -07:00
|
|
|
}
|