Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/delegateWithPrivateSet.kt
T
2018-06-28 12:26:41 +02:00

16 lines
314 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
// See KT-10107: 'Variable must be initialized' for delegate with private set
class My {
var delegate: String by kotlin.properties.Delegates.notNull()
private set
init {
delegate = "OK"
}
}
fun box() = My().delegate