blob: 819c0cf862ddc22e683b775e0523f4fcf21097e9 [file] [log] [blame]
class Test {
void method() {
for(Iterator<String> it = null; it.hasNext();) {
String s = it.next();
}
}
}