mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-141330 Find Usages cannot find valid usage from abstract class
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package z;
|
||||
|
||||
interface I {
|
||||
void <caret>run();
|
||||
}
|
||||
abstract class A {
|
||||
public void run() {}
|
||||
}
|
||||
|
||||
class Foo extends A implements I {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package z;
|
||||
|
||||
interface I {
|
||||
void run();
|
||||
}
|
||||
abstract class A {
|
||||
public void <caret>run() {}
|
||||
}
|
||||
|
||||
class Foo extends A implements I {
|
||||
}
|
||||
Reference in New Issue
Block a user