Files
kotlin-fork/compiler/testData/codegen/box/syntheticAccessors/inlineInOtherClass.kt
T
2019-11-19 11:00:09 +03:00

9 lines
147 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class A {
private inline fun f() = g()
private fun g() = "OK"
fun h() = { f() }
}
fun box() = A().h()()