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.

pr83377.aj 271B

123456789101112131415161718
  1. interface I extends Cloneable {
  2. public Object clone ();
  3. }
  4. class C implements I {
  5. // public Object clone() {return this;}
  6. }
  7. privileged aspect A {
  8. declare parents : C implements java.lang.Cloneable;
  9. public Object C.clone () {
  10. return null;
  11. }
  12. }