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

7 lines
135 B
Plaintext
Vendored

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