Files

42 lines
601 B
Kotlin
Vendored

// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
package test
inline fun call(crossinline s: () -> String): String {
return {
s()
}.let { it() }
}
// FILE: 2.kt
import test.*
class A {
private fun method() = "O"
private val prop = "K"
fun test1(): String {
return call {
method() + prop
}
}
fun test2(): String {
return call {
call {
method() + prop
}
}
}
}
fun box(): String {
val a = A()
if (a.test1() != "OK") return "fail 1: ${a.test1()}"
return a.test2()
}