mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
testdata for IDEA-149709
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Set;
|
||||
import java.util.function.Function;
|
||||
|
||||
class Test {
|
||||
{
|
||||
Set<Class<? extends Throwable>> exceptions = null;
|
||||
transform(exceptions, x -> x.getSimpleName());
|
||||
}
|
||||
|
||||
public static <F, T> Collection<T> transform(Collection<F> fromCollection, Function<? super F, T> function) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user