Source file test/fixedbugs/bug133.dir/bug2.go

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package bug2
     6  
     7  import _ "./bug1"
     8  import "./bug0"
     9  
    10  type T2 struct { t bug0.T }
    11  
    12  func fn(p *T2) int {
    13  	// This reference should be invalid, because bug0.T.i is local
    14  	// to package bug0 and should not be visible in package bug1.
    15  	return p.t.i;	// ERROR "field|undef"
    16  }
    17  

View as plain text