Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/notApplicableForSimpleNPE.kt
T
2019-06-07 12:23:54 +07:00

7 lines
156 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun main(args: Array<String>) {
val t: String? = "abc"
if (t == null<caret>) throw NullPointerException() else t
}