mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
28 lines
430 B
Java
28 lines
430 B
Java
interface Test {
|
|
|
|
final class Inner {
|
|
|
|
void func() {
|
|
of("");
|
|
of();
|
|
of("", "");
|
|
}
|
|
|
|
}
|
|
|
|
static void of(String... lists) { }
|
|
|
|
}
|
|
|
|
interface Entry<T> { }
|
|
interface ClassA<T> {
|
|
static <T> void f(Iterable<T> values) {
|
|
}
|
|
}
|
|
interface ClassB<T> extends ClassA<Entry<T>> {
|
|
static <T> void f(Iterable<? extends Entry<? extends T>> values) {}
|
|
|
|
static void m(Iterable<Entry<String>> x) {
|
|
f(x);
|
|
}
|
|
} |