Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt48806.kt
T
2021-09-17 18:38:19 +03:00

17 lines
242 B
Kotlin
Vendored

// ISSUE: KT-48806
class A {
val test_1: Int = try{
throw RuntimeException()
} catch(e: Exception) {
1
}
val test_2: Int = try{
1
} catch(e: Exception) {
throw RuntimeException()
}
}