9 lines
147 B
Kotlin
Vendored
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()()
|