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.

A.aj 400B

1234567891011121314151617181920212223242526272829303132
  1. class MyClass {
  2. protected Object method() {
  3. return null;
  4. }
  5. }
  6. abstract aspect A {
  7. interface C { }
  8. public void C.hello() {
  9. new MyClass() {
  10. protected Object methodX() {
  11. return super.method();
  12. }
  13. };
  14. }
  15. class C2 { }
  16. public void C2.hello() {
  17. new MyClass() {
  18. protected Object methodX() {
  19. return super.method();
  20. }
  21. };
  22. }
  23. }