Files
kotlin-fork/compiler/testData/codegen/boxInline/signatureMangling/inheritFromJava.kt
T
2022-01-27 01:02:24 +03:00

13 lines
217 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// FILE: Base.java
public class Base {
public String ok() { return "OK"; }
}
// FILE: Derived.kt
class Derived: Base()
inline fun ok() = Derived().ok()
// FILE: box.kt
fun box() = ok()