aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1923/gh327/C.aj
blob: 16e6bb543ce1efec6b7d4521d431f1a9d4939607 (plain)
1
2
3
4
5
6
7
8
9
10
privileged public aspect C {
    private final String D.s = E.f.toString();
}

class D { }

class E {
 public static final E f = new E();
}