blob: 6bf6d9ec7705a12c23b00b9ce7d2e5d18f0fb410 [file] [log] [blame]
// "Replace with forEach" "false"
class Sample {
void foo(It it){
for (String s : i<caret>t) {
if (s == null) {
}
}
}
}
abstract class It implements Iterable<String> {}