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

11 lines
172 B
Plaintext
Vendored

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