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

7 lines
99 B
Plaintext
Vendored

fun foo() {
val a: String? = if (<caret>) {
"aaa"
} else {
}
a.toString()
}