unimplement interface: find ref correctly (IDEA-84554)

This commit is contained in:
anna
2012-04-14 13:51:13 +02:00
parent 1effe9cca2
commit 06a398831d
3 changed files with 23 additions and 1 deletions
@@ -0,0 +1,11 @@
// "Unimplement Interface" "true"
class A {
public String toString() {
return super.toString();
}
public void foo(String ty){}
}
interface II {
}