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

10 lines
143 B
Plaintext
Vendored

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