[FIR] Fix CANNOT_BE_IMPORTED for java static methods/variables

This commit is contained in:
Andrey Zinovyev
2021-06-09 14:13:25 +03:00
committed by TeamCityServer
parent 2b161581ca
commit 371452d49a
7 changed files with 70 additions and 17 deletions
@@ -0,0 +1,18 @@
// FIR_IDENTICAL
//FILE:a/Foo.java
package a;
public class Foo {
public void bar() {
}
public static void bar(String arg) {
}
}
//FILE:test.kt
package b
import a.Foo.bar