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.

RecognizeAspectCE.java 257B

1234567
  1. // PR#457
  2. class RecognizeAspectCE {
  3. public static void main(String[] ignore) { }
  4. // pointcut mumble()
  5. // : execution(public static void RecognizeAspectCE.main(String[]));
  6. before(): this(*) { } // ok: get error here: constructor has the wrong name
  7. }