summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr153380/case1/Runner.java
blob: 5ca333533bf98055e2d1696269ac1c32b1a991ab (plain)
1
2
3
4
5
6
7
8
9
public class Runner {
  public static void main(String []argv) {
    new BaseImpl().m();
  }

  static aspect A{
    before(): call(* *(..)) {}
  }
}