Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/protectedVarWithPrivateSet.kt
T

17 lines
217 B
Kotlin
Vendored

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