Files
kotlin/idea/testData/codeInsight/surroundWith/tryCatchFinallyExpression/singleExpression.kt.after
2017-09-12 18:27:47 +03:00

7 lines
119 B
Plaintext
Vendored

fun foo() {
val a = try {
"aaa"
} catch (e: <selection>Exception</selection>) {
} finally {
}
}