Files
kotlin-fork/compiler/testData/codegen/boxInline/anonymousObject/twoCapturedReceivers/kt8668_3.kt
T
Steven Schäfer efb938a7c8 (Un)mute tests
2019-07-31 11:18:44 +02:00

29 lines
561 B
Kotlin
Vendored

// FILE: 1.kt
package test
class Person(val name: String) {
fun sayName() = doSayName { name }
inline fun doSayName(crossinline call: () -> String): String {
return nestedSayName1 { name + Person("sub").nestedSayName2 { call() } }
}
fun nestedSayName1(call: () -> String) = call()
inline fun nestedSayName2(call: () -> String) = name + call()
}
// FILE: 2.kt
//NO_CHECK_LAMBDA_INLINING
import test.*
fun box(): String {
val res = Person("OK").sayName()
if (res != "OKsubOK") return "fail: $res"
return "OK"
}