[FIR] Fix CANNOT_BE_IMPORTED for java static methods/variables
This commit is contained in:
committed by
TeamCityServer
parent
2b161581ca
commit
371452d49a
+18
@@ -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
|
||||
Reference in New Issue
Block a user