Files
kotlin-fork/idea/testData/inspectionsLocal/replaceGuardClauseWithFunctionCall/notStringArgument.kt
T

8 lines
165 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
try {
} catch (e: Exception) {
<caret>if (e is RuntimeException) throw IllegalStateException(e)
}
}