blob: 66625aad13f822e0e8f34f15ff48089b8df7ff1f [file] [log] [blame]
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
}