Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
protectedVarWithPrivateSet.kt
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"
}