2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2009-01-26 10:59:59 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2009-09-01 15:12:09 -06:00
|
|
|
package bug2
|
2009-01-26 10:59:59 -07:00
|
|
|
|
2009-09-17 11:27:04 -06:00
|
|
|
import _ "./bug1"
|
2009-06-25 21:13:56 -06:00
|
|
|
import "./bug0"
|
2009-01-26 10:59:59 -07:00
|
|
|
|
|
|
|
type T2 struct { t bug0.T }
|
|
|
|
|
|
|
|
func fn(p *T2) int {
|
|
|
|
// This reference should be invalid, because bug0.T.i is local
|
|
|
|
// to package bug0 and should not be visible in package bug1.
|
2009-07-30 17:46:14 -06:00
|
|
|
return p.t.i; // ERROR "field|undef"
|
2009-01-26 10:59:59 -07:00
|
|
|
}
|