8 lines
117 B
Kotlin
Vendored
8 lines
117 B
Kotlin
Vendored
class A {
|
|
private inline fun f() = g()
|
|
private fun g() = "OK"
|
|
fun h() = { f() }
|
|
}
|
|
|
|
fun box() = A().h()()
|