Files
kotlin-fork/idea/testData/intentions/branched/doubleBangToIfThen/topLevelValCustomGetter.kt.after
T
2014-04-22 22:33:08 +04:00

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")
}