Files
kotlin-fork/idea/testData/codeInsight/surroundWith/if/block.kt.after
T
Natalia.Ukhorskaya 1786c2c256 Add surround with if
2013-02-13 17:21:03 +04:00

9 lines
123 B
Plaintext

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