8 lines
152 B
Kotlin
Vendored
8 lines
152 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun main(args: Array<String>) {
|
|
val foo: String? = "foo"
|
|
if (foo == null<caret>) {
|
|
throw NullPointerException()
|
|
}
|
|
}
|