// WITH_STDLIB import kotlin.properties.Delegates open class A { protected var value: T by Delegates.notNull() private set } class B : A() fun box(): String { B() return "OK" }