mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 23:04:57 +07:00
642c65dd11
GitOrigin-RevId: d5f7dc3b03d68d249ba29532b0e8c0555cae60d6
7 lines
254 B
Java
7 lines
254 B
Java
class Outer<T> {
|
|
class Inner { }
|
|
Foo<Outer.Inner> m(Foo<Outer<Integer>.Inner> foo) {
|
|
<error descr="Incompatible types. Found: 'Foo<Outer<java.lang.Integer>.Inner>', required: 'Foo<Outer.Inner>'">return foo;</error>
|
|
}
|
|
}
|
|
class Foo<X> {} |