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

7 lines
109 B
Kotlin

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