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

6 lines
87 B
Plaintext
Vendored

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