mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
354 B
Java
21 lines
354 B
Java
import java.util.Collection;
|
|
|
|
class IncorrectError extends NarrowClass {
|
|
public Collection<String> bar() {
|
|
return super.doStuff();
|
|
}
|
|
}
|
|
|
|
interface Interface {
|
|
Collection<String> doStuff();
|
|
}
|
|
|
|
class NarrowClass extends BaseClass implements Interface {
|
|
}
|
|
|
|
class BaseClass {
|
|
public Collection doStuff() {
|
|
return null;
|
|
}
|
|
}
|