Files
kotlin-fork/idea/testData/codeInsight/surroundWith/ifElse/block.kt.after
T
2013-02-13 17:21:04 +04:00

10 lines
136 B
Plaintext

fun foo() {
val a: String? = null
if (<caret>) {
if (a != null) {
a.length()
}
} else {
}
}