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

11 lines
154 B
Kotlin

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