aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr44365/SimpleInner3.java
blob: 5fa28f7c38846fbaefe9b154970b41f79d887163 (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
public class SimpleInner3 {
}

enum Foo {
}

@interface WibbleAnno {
}

class Bar {
  public class Inner {
    public void foo() {}
  }
  Runnable r = new Runnable() {
    public void run() {}
  };
}

interface I {
}

aspect X {
  before(): execution(* (is(InnerType) && !is(AnonymousType) && *).*(..)) {}
}