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