summaryrefslogtreecommitdiffstats
path: root/tests/bugs/oxford/PR62475.java
blob: 993dbc4ccad7508462c6a6e13a1619d8984f254a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
aspect Aspect {

 public int A.x = z; // okay, z is visible.
 
}

class A {
 int z = 0;
}

public class PR62475 {

 public static void main(String[] args) {
System.out.println(new A().x);
 }

}