2fe222e8e7
Otherwise they fail with a compiler exception: "An operation is not implemented: SAM conversion"
19 lines
373 B
Kotlin
Vendored
19 lines
373 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// EXPECTED_REACHABLE_NODES: 1702
|
|
// SKIP_DCE_DRIVEN
|
|
package foo
|
|
|
|
import kotlin.comparisons.*
|
|
|
|
val Int.abs: Int
|
|
get() = if (this >= 0) this else -this
|
|
|
|
fun test(xs: List<Int>): List<Int> =
|
|
xs.sortedWith(compareBy { it.abs })
|
|
|
|
fun box(): String {
|
|
assertEquals(listOf(1, -2, 3, -4), test(listOf(-2, 1, -4, 3)))
|
|
|
|
return "OK"
|
|
}
|