Files
kotlin-fork/compiler/testData/ir/irText/ifElseIf.kt
T
Dmitry Petrov 5709826096 Refactoring.
'if' expressions (represented as 'when' without subject).
2016-10-18 09:08:16 +03:00

4 lines
81 B
Kotlin
Vendored

fun test(i: Int) =
if (i > 0) 1
else if (i < 0) -1
else 0