// KJS_WITH_FULL_RUNTIME // WITH_RUNTIME 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" }