Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
protectedVarWithPrivateSet.kt
blob: 76bb953d48fb9ac3efce747649081dea4234649e [
file
]
// 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"
}