mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 1e1b77009dc78de49c7cc5c44d4704937397bb23
7 lines
200 B
Java
7 lines
200 B
Java
class C<T,S> {
|
|
class D extends C<D,D> {}
|
|
<T> T foo(){
|
|
D x = this.<D.D.D><error descr="Incompatible types. Found: 'C.D.D.D', required: 'C.D'">foo</error>();
|
|
return null;
|
|
}
|
|
} |