mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
6 lines
264 B
Java
6 lines
264 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="'b(S)' in 'Test' cannot be applied to '()'">()</error>;
|
|
<error descr="Missing return statement">}</error>
|
|
} |