mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
14 lines
263 B
Kotlin
Vendored
14 lines
263 B
Kotlin
Vendored
// 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
|