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

9 lines
116 B
Kotlin
Vendored

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