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

7 lines
124 B
Plaintext
Vendored

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