You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr83311.aj 421B

12345678910111213141516171819202122
  1. aspect A {
  2. public abstract Object I.clone();
  3. public abstract Object I.ordinary();
  4. }
  5. interface I { }
  6. interface I2 {
  7. public abstract Object clone();
  8. public abstract Object ordinary();
  9. }
  10. class Impl implements I {
  11. public Object clone() { return this;}
  12. public Object ordinary() { return this;}
  13. }
  14. class Impl2 implements I2 {
  15. public Object clone() { return this;}
  16. public Object ordinary() { return this;}
  17. }