mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
check overriding in correct order (IDEA-97506)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import java.util.List;
|
||||
|
||||
interface ExampleInterface {
|
||||
public List exampleMethod();
|
||||
}
|
||||
|
||||
class ExampleSuperClass {
|
||||
public List<String> exampleMethod() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public class ExampleSubClass extends ExampleSuperClass implements ExampleInterface {
|
||||
}
|
||||
Reference in New Issue
Block a user