summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr166084/Simple.java
blob: c5992b4eec90dce94469791a624bc7e4f6b84c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class Simple {
  public static void main(String []argv) {
    new Simple().m();
  }

  public void m() {
    int i = 1;
    System.out.println(i);
  }
}

aspect X {
  before(): call(* println(..)) {}
}