Files
kotlin-fork/idea/testData/intentions/ifNullToElvis/ifStatementPriority.kt.after
T
2016-04-07 18:50:32 +03:00

5 lines
126 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(a: String?, b: String): String {
val x = (if (true) a else b) ?: throw Exception()
return x
}