12 lines
159 B
Kotlin
Vendored
12 lines
159 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DUMP_DEPENDENCIES
|
|
// FILE: J.java
|
|
|
|
public class J {
|
|
public static void bar() {}
|
|
}
|
|
|
|
// FILE: javaStaticMethod.kt
|
|
|
|
fun test() = J.bar()
|