aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr83311.aj
blob: 83932c7714beeddcf17f1d9c6818c17ee1771beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
aspect A {
  public abstract Object I.clone();
  public abstract Object I.ordinary();
}

interface I { }

interface I2 {
  public abstract Object clone();
  public abstract Object ordinary();
}


class Impl implements I {
  public Object clone() { return this;}
  public Object ordinary() { return this;}
}

class Impl2 implements I2 {
  public Object clone() { return this;}
  public Object ordinary() { return this;}
}