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.

New.java 208B

123456789101112131415
  1. public class New {
  2. public static void main(String[] args) {
  3. new New().go();
  4. }
  5. void go() {
  6. }
  7. }
  8. aspect A {
  9. pointcut p(): call(* *.new(..)) && this(*);
  10. before(): p() {
  11. }
  12. }