Files
kotlin-fork/compiler/testData/codegen/boxInline/anonymousObject/kt9064.kt
T
2021-02-02 17:53:52 +03:00

32 lines
416 B
Kotlin
Vendored

// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
package test
class Test(val _member: String) {
val _parameter: Z = test {
object : Z {
override val property = _member
}
}
}
interface Z {
val property: String
}
inline fun test(s: () -> Z): Z {
return s()
}
// FILE: 2.kt
import test.*
fun box(): String {
val test = Test("OK")
return test._parameter.property
}