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