8 lines
165 B
Kotlin
Vendored
8 lines
165 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun test() {
|
|
try {
|
|
} catch (e: Exception) {
|
|
<caret>if (e is RuntimeException) throw IllegalStateException(e)
|
|
}
|
|
} |