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

11 lines
201 B
Kotlin
Vendored

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