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.

pr105479.aj 207B

12345678910111213
  1. public aspect pr105479 {
  2. private interface Test {
  3. Object getId();
  4. }
  5. class StringTest {
  6. public String getId() {
  7. return null;
  8. }
  9. }
  10. declare parents : StringTest implements Test;
  11. }