import java.lang.Integer; import java.util.List; class Base { m(List a) {} } public class Bug306 extends Base { @Override m(List b) { b.add(1); } }