8 lines
175 B
Plaintext
8 lines
175 B
Plaintext
val a: String?
|
|
get() = ""
|
|
|
|
fun main(args: Array<String>) {
|
|
val s = a
|
|
val x = if (s != null) s else throw NullPointerException("Expression 'a' must not be null")
|
|
}
|