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

8 lines
102 B
Plaintext

fun foo() {
var a: String?
if (<caret>) {
a = "aaa"
} else {
}
a = "bbb"
}