fix testdata

This commit is contained in:
Anna Kozlova
2017-05-18 10:39:17 +03:00
parent 2fdf4b8244
commit 40cbf4648a
2 changed files with 14 additions and 1 deletions

View File

@@ -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() {}
}

View File

@@ -1,4 +1,4 @@
// "Use existing implementation of 'foo'" "false"
// "Use existing implementation of 'foo'" "true"
interface I {
void <caret>foo();
}