1 2 3 4 5 6 7 8 9 10 11
/** @testcase PR851 declaring an aspect constructor with argument should be prohibited */ aspect A { A() {} } aspect B { A.new(int i) {} // CE 10 }