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

10 lines
149 B
Plaintext
Vendored

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