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

DeclareOnlyAspectConstructorCE.java 179B

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