blob: 87308e27555ab8f75f1ec2c4cf0d40e344600a13 [file] [log] [blame]
// "Replace l.removeAll(objs) with java.util.Collections.addAll(l, objs)" "false"
class T {
public static void main(String[] args){
List l = new List();
Object[] objs = new Object[0];
l.removeAll(<caret>objs);
}
}