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

7 lines
105 B
Kotlin
Vendored

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