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.

X.java 172B

12345678910111213
  1. import java.util.List;
  2. aspect F {
  3. void A.xx(List<String> x) { }
  4. }
  5. class A {
  6. //void xx(List<String> x) {}
  7. }
  8. class E {
  9. void foo() {
  10. new A() {}.xx(null);
  11. }
  12. }