blob: 881eedb8aaf540da065054b18dda9d1189fada63 [file]
// WITH_STDLIB
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"
}