Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/intoCatch.kt
T

10 lines
145 B
Kotlin
Vendored

// MOVE: up
fun test() {
try {
run {
}
} catch (e: Exception) {
} catch (e: Throwable) {
}
<caret>println()
}