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

5 lines
136 B
Plaintext

val a: String? = "A"
fun main(args: Array<String>) {
if (a == null) throw NullPointerException("Expression 'a' must not be null")
}