1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-09-03 05:54:57 +02:00
org.aspectj/tests/bugs150/pr83311.aj

23 Zeilen
421 B
Plaintext

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;}
}