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

5 lines
112 B
Kotlin
Vendored

// FIX: Replace with `max` function
// WITH_RUNTIME
fun test(x: Double, y: Double) {
<caret>Math.max(x, y)
}