10 lines
132 B
Kotlin
Vendored
10 lines
132 B
Kotlin
Vendored
// !DUMP_DEPENDENCIES
|
|
// FILE: J.java
|
|
|
|
public class J {
|
|
public void bar() {}
|
|
}
|
|
|
|
// FILE: javaMethod.kt
|
|
|
|
fun test(j: J) = j.bar() |