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

6 lines
92 B
Plaintext
Vendored

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