summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr59397.aj
blob: b11d6f475f1208c11f8c00258d98bb7c697f5e22 (plain)
1
2
3
4
5
6
aspect A {  
    HW.new(String s) {this();}  
    declare warning : initialization(HW.new(String,A)) : "should not match";
    declare warning : initialization(HW.new(String)) : "should match";
}
class HW {}