blob: dd94d2c9f3ee39d0111956feedc0153790048cb5 [file] [log] [blame]
// "Replace with forEach" "false"
import java.util.ArrayList;
import java.util.List;
class Sample {
Iterable<String> foo = new ArrayList<>();
String foo(){
for (String s : fo<caret>o) {
if (s == null) {
return s;
}
}
return null;
}
}