mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
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);
|
|
} |