mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
15 lines
247 B
Java
15 lines
247 B
Java
import java.util.function.ToIntFunction;
|
|
class Test {
|
|
{
|
|
fooBar(String::length);
|
|
}
|
|
|
|
class Foo<K> {
|
|
Foo<K> then() {
|
|
return null;
|
|
}
|
|
}
|
|
static <T> Foo<T> fooBar(ToIntFunction<? super T> keyExtractor) {
|
|
return null;
|
|
}
|
|
} |