5 lines
165 B
Plaintext
5 lines
165 B
Plaintext
fun main(args: Array<String>) {
|
|
val foo: String? = "foo"
|
|
val t = if (foo != null) foo else throw NullPointerException("Expression 'foo' must not be null")
|
|
}
|