mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
448 B
Java
21 lines
448 B
Java
class Test {
|
|
static <U> Iterable<U> map(Mapper<? super String, ? extends U> mapper) {
|
|
return null;
|
|
}
|
|
|
|
static void test() {
|
|
Integer next = map(String::length).iterator().next();
|
|
Integer next1 = map(Test::length).iterator().next();
|
|
}
|
|
|
|
public static <T> T length(T s) {
|
|
return null;
|
|
}
|
|
|
|
public static <T> int length(String s) {
|
|
return 0;
|
|
}
|
|
}
|
|
interface Mapper<T, U> {
|
|
U map(T t);
|
|
} |