8e347f9f39
* Functions with IrExpressionBody are lowered to IrBlockBody * Implemented throwUninitializedPropertyAccessException function
9 lines
120 B
Kotlin
Vendored
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
|
|
} |