aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractMethods/abstractClass/B.java
blob: e63e581b72ca8233e2d916fa95e16115035b1138 (plain)
1
2
3
4
5
6
7
abstract class B {}
 
aspect A {
  abstract void B.m();

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