blob: c1bbf0a0924bbcffe280cd99e13af23292404a62 [file] [log] [blame]
// "Replace with forEach" "true"
import java.util.ArrayList;
import java.util.List;
class Sample {
List<String> foo = new ArrayList<>();
{
//some comment
foo.forEach(System.out::println);
}
}