func main() { var t testing.T // make sure error mentions that // name is unexported, not just "name not found". t.common.name = nil // ERROR "unexported" println(testing.anyLowercaseName("asdf")) // ERROR "unexported" "undefined: testing.anyLowercaseName" }
func main() { var t testing.T // make sure error mentions that // ch is unexported, not just "ch not found". t.ch = nil // ERROR "unexported" println(testing.anyLowercaseName("asdf")) // ERROR "unexported" }