2009-01-26 09:59:59 -08:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2009-09-01 14:12:09 -07:00
|
|
|
package bug2
|
2009-01-26 09:59:59 -08:00
|
|
|
|
2009-09-17 10:27:04 -07:00
|
|
|
import _ "./bug1"
|
2009-06-25 20:13:56 -07:00
|
|
|
import "./bug0"
|
2009-01-26 09:59:59 -08: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 16:46:14 -07:00
|
|
|
return p.t.i; // ERROR "field|undef"
|
2009-01-26 09:59:59 -08:00
|
|
|
}
|