f2accb7b9e
#KT-16067 Fixed
8 lines
207 B
Kotlin
Vendored
8 lines
207 B
Kotlin
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 if (x != <caret>null) x else 5
|
|
} |