pull up: update references in hierarchy for static methods in interfaces

IDEA-186590
This commit is contained in:
Anna.Kozlova
2018-02-15 19:47:07 +01:00
parent 7474c9d0cc
commit ab90341de0
6 changed files with 42 additions and 0 deletions
@@ -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();
}
}