Files
kotlin-fork/compiler/testData/codegen/box/syntheticAccessors/inlineInOtherClass.kt
T

8 lines
117 B
Kotlin
Vendored

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