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

6 lines
95 B
Plaintext
Vendored

import kotlin.math.IEEErem
// WITH_RUNTIME
fun test(x: Double, y: Double) {
x.IEEErem(y)
}