aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractMethods/singlesource/C1.java
blob: 881d0001565a094128d2931cedbc634475f267d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
abstract class B {}
 
aspect A {
  abstract void B.m();

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

public class C1 extends B {
  public static void main(String[] args) {
    A.doit(new C1());
  }
}

aspect A1 {
    void C1.m() {}
}