blob: a25108f712f912dc6b5c3f5c30da96887eee7af2 [file] [log] [blame]
import java.util.ArrayList;
public class Foo {
void m() {
for (int i = 0; i < new ArrayList().size(); i++) {
<caret>
}
}
}