Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/simpleVar.kt
T
2015-09-05 00:54:19 +03:00

9 lines
120 B
Kotlin
Vendored

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