import java.util.List; aspect F { void A.xx(List x) { } } class A { //void xx(List x) {} } class E { void foo() { new A() {}.xx(null); } }