Files
kotlin-fork/idea/testData/intentions/branched/ifThenToDoubleBang/emptyThenBlock.kt
T
2014-04-22 22:33:08 +04:00

11 lines
168 B
Kotlin

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