Files
kotlin-fork/idea/testData/codeInsight/surroundWith/tryCatch/moveDeclarationsOut.kt.after
T
2013-02-21 15:30:26 +04:00

12 lines
185 B
Plaintext

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