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

7 lines
124 B
Plaintext
Vendored

import kotlin.math.min
// FIX: Replace with `min` function
// WITH_RUNTIME
fun test(x: Double, y: Double) {
min(x, y)
}