blob: cca5c1e7527038c59ba6be47d882aa2f474447d7 [file] [log] [blame]
// "Replace with forEach" "true"
import java.util.ArrayList;
import java.util.List;
class Sample {
List<String> foo = new ArrayList<>();
{
for (String s : fo<caret>o) {
bar(s)
}
}
void bar(String s){}
}