Files
kotlin/compiler/testData/codegen/box/objects/kt11117.kt
Roman Artemev 8a871b3f0c Update tests
2018-08-31 15:34:18 +03:00

16 lines
240 B
Kotlin
Vendored

class A(val value: String)
fun A.test(): String {
val o = object {
val z: String
init {
val x = value + "K"
z = x
}
}
return o.z
}
fun box(): String {
return A("O").test()
}