aboutsummaryrefslogtreecommitdiffstats
path: root/tests/options/XLintTypeThisPCD.java
blob: 6d32f05543298575ac01ff5f6e72babe13745101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C {}
class D {}
class E {}
class F {}

public aspect XLintTypeThisPCD {
    public static int COUNT;

    before () : this(UnknownType) {     // CM -XLint unfound type
        COUNT++;
    }
}