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