Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/exceptionGetter.kt
T
2021-09-08 19:56:38 +03:00

14 lines
191 B
Kotlin
Vendored

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