mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
15 lines
489 B
Java
15 lines
489 B
Java
class Test {
|
|
static class SuperFoo<X> {}
|
|
|
|
static class Foo<X extends Number> extends SuperFoo<X> {}
|
|
|
|
interface I<Y> {
|
|
SuperFoo<Y> m();
|
|
}
|
|
|
|
<R> SuperFoo<R> foo(I<R> ax) { return null; }
|
|
|
|
SuperFoo<String> ls = foo(<error descr="Incompatible types. Found: 'Test.SuperFoo<java.lang.Number>', required: 'Test.SuperFoo<java.lang.String>'">() -> new Foo<>()</error>);
|
|
SuperFoo<Integer> li = foo(() -> new Foo<>());
|
|
SuperFoo<?> lw = foo(() -> new Foo<>());
|
|
} |