1// run 2 3// Copyright 2010 The Go Authors. All rights reserved. 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file. 6 7package main 8 9import . "testing" // defines file-level T 10 11type _ B // make use of package "testing" (but don't refer to T) 12 13type S struct { 14 T int 15} 16 17func main() { 18 _ = &S{T: 1} // should work 19} 20