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.

C.java 184B

123456789101112131415
  1. package test;
  2. public class C {
  3. public C() {
  4. new C();
  5. }
  6. // public static void main(String[] args) {
  7. // new C();
  8. // }
  9. }
  10. aspect X {
  11. before () : call(public *..C.new()) {}
  12. }