Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/lambdaInTry3.kt.after
T
2020-05-09 22:08:02 +02:00

9 lines
120 B
Plaintext
Vendored

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