aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr100227.aj
blob: b7c899b0f513fcb7923a672b9af5c6808f7439da (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
class Outer {
  class Inner {public void p() {System.err.println("Outer.Inner.p() executing");} }
  public void m() { new Inner().p(); }
}

class Generic_Outer<T> {
  class Inner {public void p() {System.err.println("Generic_Outer.Inner.p() executing");} }

  public void m() { new Inner().p(); }
}

aspect Injector {
  int Outer.outer = 1;
  int Outer.Inner.inner = 2;
  int Generic_Outer.outer = 3; 
  int Generic_Outer.Inner.inner = 4;

  before(Object o): execution(* p()) && this(o) {
    if (o instanceof Outer.Inner) {
      System.err.println("Outer.Inner.inner="+((Outer.Inner)o).inner);
    }
    if (o instanceof Generic_Outer.Inner) {
      System.err.println("Generic_Outer.Inner.inner="+((Generic_Outer.Inner)o).inner);
    }
  }
}

public class pr100227 {
  public static void main(String []argv) {
    new Outer().m();
    new Generic_Outer<String>().m();
  }
}