1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
263 B
Kotlin
14 lines
263 B
Kotlin
// WITH_RUNTIME
|
|
// 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
|