Files
kotlin-fork/idea/testData/intentions/branched/ifThenToSafeAccess/emptyCondition.kt
T
2014-03-12 16:02:56 +04:00

9 lines
136 B
Kotlin

// IS_APPLICABLE: false
fun main(args: Array<String>) {
val foo = "foo"
if (<caret>) {
foo.length
}
else null
}