blob: 7cb3803d6c17f3e1b5d1e0bb306b319d3b3e2c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
class A { void run() {} }
class B extends A {}
aspect C {
before() : runB() { }
pointcut runB(): call(void B.run()); // CW 6 XLint, for each shadow (12, 14)
before() : call(int B.run()) {} // pointcut not matched
}
public class DeclaringTypeWarning {
public static void main(String[] args) {
// ok with -1.4; otherwise, becomes A.run in bytecode
new B().run(); // CW 12 DW
// never works - compile-time type of reference is A, not B
((A) new B()).run();
}
}
aspect D {
// produces CW 12 DW only under 1.4 (correct method signature)
declare warning : call(void B.run()) : // no XLint warning here (?)
"declare warning : call(void B.run())";
// should never produce a warning
declare warning : call(int B.run()) :
"declare warning : call(int B.run())";
}
/** @testcase PR#41952 XLint when call declaring type is not defining type */
|