blob: ec8e0f11bcf3644c2ac70cddd24bfb9213ef5497 [file] [log] [blame]
//selection: 9, 20, 9, 46
//name: iterator -> iter
package simple;
import java.util.ArrayList;
public class NewInstanceImport {
public void m(int a) {
boolean b= new ArrayList().iterator().hasNext();
}
public void use() {
m(17);
}
}