Files
kotlin-fork/compiler/testData/codegen/box/builderInference/issues/kt54767a.kt
T
2023-12-05 18:15:51 +00:00

27 lines
453 B
Kotlin
Vendored

// ISSUE: KT-54767
// WITH_STDLIB
fun box(): String {
val buildee by lazy {
build {
setTypeVariable(TargetType())
}
}
buildee
return "OK"
}
class TargetType
class Buildee<TV> {
fun setTypeVariable(value: TV) { storage = value }
private var storage: TV = TargetType() as TV
}
fun <PTV> build(instructions: Buildee<PTV>.() -> Unit): Buildee<PTV> {
return Buildee<PTV>().apply(instructions)
}