blob: 5351ed327a8735ab031e8e6b99765a70a9ff48b6 (
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
|
interface P<T> {
public T pm(T t);
// public String pm2(String t);
}
interface C extends P<String> {
public void cm();
}
class CImpl implements C {
public void cm() {}
public String pm(String s) { System.err.println(s);return s;}
// public String pm2(String s) { return s;}
}
public class B {
public static void main(String []argv) {
C test = new CImpl();
test.pm("foo"); // manifests as 'Object pm(Object) call' due to type C being used
// test.pm2("foo");
}
}
aspect X {
before(): call(* pm(..)) { System.err.println("advice");}
// before(): call(* pm2(..)) {}
}
|