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.

pr59397.aj 207B

123456
  1. aspect A {
  2. HW.new(String s) {this();}
  3. declare warning : initialization(HW.new(String,A)) : "should not match";
  4. declare warning : initialization(HW.new(String)) : "should match";
  5. }
  6. class HW {}