import java.util.*; class Base { } public class SimpleH { public static void main(String[] argv) { List l1 = new ArrayList(); Base b2 = new Base(l1); } } aspect X { public

Base.new(List

lr) { this(); } }