import java.util.*; public class CtorI { public static void main(String []argv) { List ls = new ArrayList(); Base b = new Base(ls); // error, violates bounds } } class Base { } aspect X { public Base.new(List lz) {this();} }