您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }