mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
# Conflicts: # community/plugins/gradle/src/org/jetbrains/plugins/gradle/service/settings/IdeaGradleProjectSettingsControlBuilder.java GitOrigin-RevId: d931e798108685731bf185f7c2e3221680b8e5a2
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);
|
|
}
|
|
} |