Files
kotlin-fork/idea/testData/intentions/branched/ifThenToSafeAccess/ifAndElseBothInBlocks.kt
T

14 lines
190 B
Kotlin

fun maybeFoo(): String? {
return "foo"
}
fun main(args: Array<String>) {
val foo = maybeFoo()
if (foo != null<caret>) {
foo.length
}
else {
null
}
}