mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
correct super method hierarchy for multiple inheritance
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
interface A
|
||||
{
|
||||
abstract String foo();
|
||||
}
|
||||
|
||||
interface B
|
||||
{
|
||||
abstract Object foo();
|
||||
}
|
||||
|
||||
class C implements A, B
|
||||
{
|
||||
public String foo() {
|
||||
<selection>return null; //To change body of implemented methods use File | Settings | File Templates.</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user