Files
kotlin-fork/idea/testData/codeInsight/surroundWith/tryCatch/moveDeclarationsOut.kt.after
T
2017-06-14 11:40:41 +02:00

12 lines
186 B
Plaintext
Vendored

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