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.

MultipleSuperCf.java 254B

12345678910111213141516
  1. import org.aspectj.testing.Tester;
  2. interface B1 { }
  3. interface B2 { }
  4. interface D extends B1, B2 {}
  5. aspect A {
  6. public int B1.m() {
  7. return 2;
  8. }
  9. public int D.m() {
  10. return super.m(); // CE even though B1.m is the only thing that makes sense
  11. }
  12. }