mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
4 lines
165 B
Java
4 lines
165 B
Java
class X<A extends X<A>> {
|
|
static class Y<B extends Y> extends X<<error descr="Type parameter 'B' is not within its bound; should extend 'X<B>'">B</error>> {}
|
|
}
|