summaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr327867/Foo.java
blob: 1d2771b02b03a64bc3778b27e6cd2854db951ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Foo {

  public static void main(String[]argv) {
    new Foo().m();
  }

  public void m() {
    int j = new Bar().i;
  }

  private class Bar {
    private int i;
  }
}

aspect X {
  before(): execution( !synthetic * *(..)) {}
}