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