7 lines
163 B
Kotlin
Vendored
7 lines
163 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
fun main(args: Array<String>) {
|
|
val t: String? = "abc"
|
|
if (t == null<caret>) throw NullPointerException() else t
|
|
}
|