7 lines
135 B
Plaintext
Vendored
7 lines
135 B
Plaintext
Vendored
import kotlin.math.roundToLong
|
|
|
|
// FIX: Replace with `roundToLong` function
|
|
// WITH_RUNTIME
|
|
fun test(x: Double) {
|
|
x.roundToLong()
|
|
} |