mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
26 lines
571 B
Java
26 lines
571 B
Java
class Test {
|
|
interface A<T> {
|
|
void _(T... t);
|
|
}
|
|
|
|
static void foo(final A<?> bar) {
|
|
bar._("");
|
|
}
|
|
static void foo1(final A<? extends String> bar) {
|
|
bar._("");
|
|
}
|
|
|
|
static void foo2(final A<? extends Integer> bar) {
|
|
bar._<error descr="'_(capture<? extends java.lang.Integer>...)' in 'Test.A' cannot be applied to '(java.lang.String)'">("")</error>;
|
|
}
|
|
|
|
|
|
public static void main(String[] args) {
|
|
foo(new A<Integer>() {
|
|
public void _(final Integer... t) {
|
|
|
|
}
|
|
});
|
|
}
|
|
}
|