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

6 lines
88 B
Plaintext
Vendored

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