aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/BadTypeName.java
blob: ce22f91464fe69a5b78cbefeee89c2aae00d2c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
aspect BadTypeName {
    pointcut prints(Foo f): call(void System.out.println(..));

    Foo x = null;

    a.b.c.Foo y = null;

    System.Inner i = null;

    Object o = a.b.c.Foo.field;

    Object o1 = C.privateField;
}


class C {
    private int privateField;
}