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

29 lines
370 B
Kotlin
Vendored

class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
val test_1: Int
field = try { // BLOCK
throw RuntimeException()
}
catch (e: Exception){ // BLOCK
1
}
get
val test_2: Int
field = try { // BLOCK
1
}
catch (e: Exception){ // BLOCK
throw RuntimeException()
}
get
}