import java.util.*; public class CtorA { public static void main(String []argv) { List intList = new ArrayList(); Base base = new Base(intList); } } class Base { public Base() {} Base(Set sn, List ys) {} } aspect X { public Base.new(List lz) { this(); } // OK, Z becomes N in parameter }