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

11 lines
161 B
Kotlin
Vendored

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