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.

BadTypeName.java 268B

123456789101112131415161718
  1. aspect BadTypeName {
  2. pointcut prints(Foo f): call(void System.out.println(..));
  3. Foo x = null;
  4. a.b.c.Foo y = null;
  5. System.Inner i = null;
  6. Object o = a.b.c.Foo.field;
  7. Object o1 = C.privateField;
  8. }
  9. class C {
  10. private int privateField;
  11. }