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