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

12 lines
181 B
Kotlin

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