Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/math/roundToInt.kt.after
T

7 lines
132 B
Plaintext
Vendored

import kotlin.math.roundToInt
// FIX: Replace with `roundToInt` function
// WITH_RUNTIME
fun test(x: Double) {
x.roundToInt()
}