bfeb9c219d
^KT-48806 Fixed
29 lines
370 B
Kotlin
Vendored
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
|
|
|
|
}
|