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.

Code.java 403B

12345678
  1. import java.util.List;
  2. aspect F { void A.xx(List<String> x) { xx(null);this.xx(null);};}
  3. class A {}
  4. class B extends A { void xx(List<String> x) { xx(null); this.xx(null); super.xx(null); }}
  5. class C implements D { public void xx(List<String> x) { xx(null); new A().xx(null); new B().xx(null); }}
  6. interface D { void xx(List<String> x); }
  7. class E { void foo() { new B().xx(null); new A() {}.xx(null); } }