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

11 lines
165 B
Plaintext
Vendored

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