blob: 76bb953d48fb9ac3efce747649081dea4234649e [file] [log] [blame]
// WITH_RUNTIME
import kotlin.properties.Delegates
open class A<T : Any> {
protected var value: T by Delegates.notNull()
private set
}
class B : A<Int>()
fun box(): String {
B()
return "OK"
}