mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
correct super method hierarchy for multiple inheritance
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
interface A
|
||||
{
|
||||
abstract String foo();
|
||||
}
|
||||
|
||||
interface B
|
||||
{
|
||||
abstract Object foo();
|
||||
}
|
||||
|
||||
class C implements A, B
|
||||
{
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user