Home | History | Annotate | Download | only in fixedbugs
      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 
      7 package main
      8 
      9 import . "testing"  // defines file-level T
     10 
     11 type _ B // make use of package "testing" (but don't refer to T)
     12 
     13 type S struct {
     14 	T int
     15 }
     16 
     17 func main() {
     18 	_ = &S{T: 1}	// should work
     19 }
     20