Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/doesNotInlineVariableInMultiDeclaration.kt.after
T
Evgeny Gerashchenko fbcfed6757 Fixed EA-57220.
2014-10-15 11:51:01 +04:00

8 lines
183 B
Plaintext
Vendored

// "Replace 'if' expression with elvis expression" "true"
data class IntPair(val first: Int?, val second: Int?)
fun f(pair: IntPair): Int {
val (x, y) = pair
return x ?: 5
}