選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }