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.

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