mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
testdata for IDEA-137795
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
class Example {
|
||||
void test() {
|
||||
Function<? super Integer, Float> firstFunction = null;
|
||||
Function<Float, String> secondFunction = null;
|
||||
Function<? super Integer, String> function = firstFunction.andThen(secondFunction);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user