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

6 lines
97 B
Plaintext
Vendored

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