Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
delegateWithPrivateSet.kt
blob: 7f87f4fc12fa860ed6a41e2dbcbf2dbdcad3eb6f [
file
]
// WITH_STDLIB
// See KT-10107: 'Variable must be initialized' for delegate with private set
class
My
{
var
delegate
:
String
by
kotlin
.
properties
.
Delegates
.
notNull
()
private
set
init
{
delegate
=
"OK"
}
}
fun box
()
=
My
().
delegate