Files
kotlin-fork/idea/testData/codeInsight/surroundWith/tryCatch/moveDeclarationsOutSingleStatement.kt.after
T
2018-12-13 12:36:02 +03:00

8 lines
127 B
Plaintext
Vendored

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