mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
21 lines
361 B
Java
21 lines
361 B
Java
import java.util.Collection;
|
|
|
|
public 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;
|
|
}
|
|
}
|