Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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