Files
kotlin-fork/idea/testData/indentationOnNewline/Catch3.after.kt
T
Dmitry Gridin 7c99a6fef4 LineIndentProvider: support catch and finally
Part of #KT-22211
2020-06-15 16:25:54 +07:00

7 lines
70 B
Kotlin
Vendored

fun a() = try {
// do smth
} catch
<caret>(e: Exception) {
}