mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
391 B
Java
13 lines
391 B
Java
<error descr="Cyclic inheritance involving 'A'">interface A extends A</error> {}
|
|
interface B {}
|
|
|
|
<error descr="Cyclic inheritance involving 'A'">class T implements A, B</error>{
|
|
<T1> T1 foo(A a, B b) {
|
|
return null;
|
|
}
|
|
|
|
void bar (boolean a, A a1, B b1){
|
|
<error descr="Incompatible types. Found: 'java.lang.Object', required: 'T'">T t = a ? a1 : b1;</error>
|
|
}
|
|
}
|