summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr137496/H.java
blob: b0c3dd6c54736382e77b09ec1b0488538e00f6e2 (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 H {

  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 {
  Object around(): call(* pm(..)) { System.err.println("advice"); return null;}
//  before(): call(* pm2(..)) {}
}