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

DeclareAspectConstructorCE.java 170B

1234567891011
  1. /** @testcase PR851 declaring an aspect constructor with argument should be prohibited */
  2. aspect A {
  3. A() {}
  4. }
  5. aspect B {
  6. A.new(int i) { this(); } // CE 10
  7. }