blob: 1893833a5e33b0f9878d13f994b32fabefa3932f (
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 XLintTypeTargetPCD {
public static int COUNT;
before () : target(UnknownType) { // CM -XLint unfound type
COUNT++;
}
}
|