aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractMethods/interface/A.java
blob: 3eed777e41c526b66977aaa138ce38dcf1f187de (plain)
1
2
3
4
5
aspect A {
  void B.m(){}

  public static void doit(B b) { b.m(); }
}