mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
logging for EA-241551 - NPE: MethodReferenceResolver$0$0.inferTypeArguments, as there is no reproducible example, still GitOrigin-RevId: 46216cd8171479d14af2283cf9cd4a35e68d9b48
18 lines
297 B
Java
18 lines
297 B
Java
|
|
import java.util.function.BiFunction;
|
|
import java.util.function.Function;
|
|
|
|
public class Clazz {
|
|
|
|
<T> T foo(BiFunction<T, T, T> d) { return null;}
|
|
<T> T foo(Function<T, String> d) { return null;}
|
|
|
|
{
|
|
fooBar(foo(this::<caret>bar));
|
|
}
|
|
|
|
<K> void fooBar(K k) {}
|
|
}
|
|
|
|
|