blob: 5d81d162aee345833131b6cb59f8d9a4c525eca4 (
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
28
29
30
31
32
33
34
35
36
|
import org.aspectj.testing.*;
/** @testcase PR#685 subaspect method declaration on superaspect inner interface (access) */
public class InnerInterfaceAccess {
public static void main (String[] args) {
Object o = new C().getThis();
Tester.check(null != o,
"null != new C().getThis()");
ConcreteAspect cc = ConcreteAspect.aspectOf();
Tester.check(null != cc,
"null != ConcreteAspect.aspectOf()");
Object p = cc.getField();
Tester.check(null != p, "null != cc.getField()");
}
}
class C implements AbstractAspect.InnerInterface {}
abstract aspect AbstractAspect {
/** bug iff interface defined in abstract aspect
* - not outer or subaspect
*/
interface InnerInterface {}
private Object privateField = new Object();
Object getField() {
return privateField; // bad CE "can't bind name"
}
}
aspect ConcreteAspect extends AbstractAspect {
/** bug iff method declaration on parent inner interface */
public Object InnerInterface.getThis() {
return this; // bug: no instance available
}
}
|