Details
Description
@Test
public void testFlatMap() {
List<String> ls = Arrays.asList("we are", "doing a", "good", " thing !");
ls.stream().flatMap(s -> Stream.of(s.split(" "))).filter(word -> word.length() > 1).forEach(e ->
);
}
the sts3.8.3 64bit compiles error "Cannot infer type argument(s) for <R> flatMap(Function<? super T,? extends Stream<? extends R>>)"