blob: 9547b42307eed094d3bdb66b0c65d7cb549ec641 [file] [log] [blame]
// "Remove redundant types" "true"
import java.util.*;
public class Sample {
List<String> foo = new ArrayList<>();
{
foo.forEach(s -> {});
}
}