Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug133.dir / bug2.go
blobe53100112062fdb3f94118d0db71f1b40f8d9381
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.
5 package bug2
7 import _ "./bug1"
8 import "./bug0"
10 type T2 struct { t bug0.T }
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"