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

8 lines
152 B
Kotlin
Vendored

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