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.

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