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

6 lines
147 B
Kotlin
Vendored

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