blob: 74f230466fd7b90bb6895098b63a9ca44789d053 [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
}