Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/simpleVar.kt
T
2018-06-09 19:15:38 +03:00

10 lines
145 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
class A {
public lateinit var str: String
}
fun box(): String {
val a = A()
a.str = "OK"
return a.str
}