testdata for IDEA-140435

This commit is contained in:
Anna Kozlova
2018-08-22 19:38:54 +03:00
parent f1efff4653
commit 88d61563c4
3 changed files with 20 additions and 0 deletions
@@ -0,0 +1,11 @@
interface I<T> {
String foo(T x);
Object foo(String x);
}
class C implements I<String> {
@Override
public String foo(String x) {
<selection>return null;</selection>
}
}
@@ -0,0 +1,8 @@
interface I<T> {
String foo(T x);
Object foo(String x);
}
class C implements I<String> {
<caret>
}