blob: f394dd7d9696780606e484f53414e1919fca45e3 [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) {
//some comment
System.out.println(s);
}
}
}