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

7 lines
105 B
Kotlin

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