mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 4449ffc2458eeb73fa296453f6963a6eeed28a76
7 lines
254 B
Java
7 lines
254 B
Java
class Outer<T> {
|
|
class Inner { }
|
|
Foo<Outer.Inner> m(Foo<Outer<Integer>.Inner> foo) {
|
|
return <error descr="Incompatible types. Found: 'Foo<Outer<java.lang.Integer>.Inner>', required: 'Foo<Outer.Inner>'">foo</error>;
|
|
}
|
|
}
|
|
class Foo<X> {} |