mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-127215
This commit is contained in:
+31
@@ -0,0 +1,31 @@
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
|
||||
abstract class FooBar<M> {
|
||||
|
||||
abstract void collect(List<? extends M> collector);
|
||||
|
||||
void foo(FooBar<?> objectStream) {
|
||||
objectStream. collect(toList( ));
|
||||
|
||||
}
|
||||
|
||||
static <T> List<T> toList() {
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
class Test {
|
||||
<T> List<List<Object>> foo(List<T> objects, Function<T, ?>... functions) {
|
||||
return objects.stream()
|
||||
.map(object -> Arrays.stream(functions)
|
||||
.map(fn -> fn.apply(object))
|
||||
.collect(toList()))
|
||||
.collect(toList<error descr="'toList()' in 'java.util.stream.Collectors' cannot be applied to '()'">()</error>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user