mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: a17a5f0f3878b9baf211737a614d1aa1a5103d31
6 lines
253 B
Java
6 lines
253 B
Java
class Test {
|
|
private <<error descr="Cyclic inheritance involving 'S'"></error>S extends K, K extends S> S b(S s) {
|
|
|
|
if (true) return b <error descr="Expected 1 argument but found 0">()</error>;
|
|
<error descr="Missing return statement">}</error>
|
|
} |