mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
fix testdata
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Use existing implementation of 'foo'" "true"
|
||||
interface I {
|
||||
void foo();
|
||||
}
|
||||
class IImpl implements I {
|
||||
@Override
|
||||
public void foo() {}
|
||||
}
|
||||
|
||||
interface II extends I {}
|
||||
class IImpl2 extends IImpl implements II {
|
||||
public void foo() {}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Use existing implementation of 'foo'" "false"
|
||||
// "Use existing implementation of 'foo'" "true"
|
||||
interface I {
|
||||
void <caret>foo();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user