mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
7 lines
200 B
Java
7 lines
200 B
Java
class C<T,S> {
|
|
class D extends C<D,D> {}
|
|
<T> T foo(){
|
|
<error descr="Incompatible types. Found: 'C.D.D.D', required: 'C.D'">D x = this.<D.D.D>foo();</error>
|
|
return null;
|
|
}
|
|
} |