blob: 0ad984469b06c5d8d8c3dc89a5f8e601a34800a6 [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) System.out.println(s);
}
}