f2accb7b9e
#KT-16067 Fixed
7 lines
156 B
Kotlin
Vendored
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
|
|
}
|