488e5e9f60
So #KT-23133 Fixed
7 lines
134 B
Kotlin
Vendored
7 lines
134 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
fun Boolean.toInt() = if (this) 1 else 0
|
|
|
|
fun test(x: Int, y: Int): Int {
|
|
return (x > y).toInt()<caret>
|
|
} |