blob: f45708b0da805c84b8bc59fa8f85c1fa221ed29b [file] [log] [blame]
// "Replace addAll(objs) with java.util.Collections.addAll(this, objs)" "true"
import java.util.List;
class A implements List {
public static void main(String[] args){
Object[] objs = new Object[0];
addAll(<caret>objs);
}
}