blob: ee22bd174b35784e85c8b32721b6d81bf3061236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class E {}
class F {
public static void main(String[] args) {}
}
public aspect XLintTypeArgsPCD {
public static int COUNT;
before () : args(UnknownType) { // CM -XLint unfound type
COUNT++;
}
}
|