mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
testdata for IDEA-140435
This commit is contained in:
+11
@@ -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>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
interface I<T> {
|
||||
String foo(T x);
|
||||
Object foo(String x);
|
||||
}
|
||||
|
||||
class C implements I<String> {
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user