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.

B.java 148B

123456789101112
  1. package p;
  2. aspect B extends Y {
  3. declare parents: A* implements IFace;
  4. }
  5. abstract aspect Y {
  6. public void IFace.foo() {}
  7. }
  8. interface IFace {}