mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
pull up: update references in hierarchy for static methods in interfaces
IDEA-186590
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
interface Foo {}
|
||||
class FooImpl implements Foo {
|
||||
{
|
||||
foo();
|
||||
}
|
||||
|
||||
public static void foo(){}
|
||||
<caret>
|
||||
}
|
||||
class U {
|
||||
public static void main(String[] args) {
|
||||
FooImpl.foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user