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

11 lines
157 B
Plaintext
Vendored

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