mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 05bdca159a63027ea0d1e3d767d4adb9b258f47e
8 lines
306 B
Java
8 lines
306 B
Java
interface I{
|
|
void foo();
|
|
}
|
|
|
|
abstract class A {
|
|
abstract int foo();
|
|
abstract <<error descr="'foo()' in 'A' clashes with 'foo()' in 'I'; incompatible return type"></error><error descr="'foo()' in 'A' clashes with 'foo()' in 'I'; incompatible return type"></error>T extends A & I> void bar(T x);
|
|
} |