Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/math/coerceAtLeast.kt
T
2019-07-10 14:09:36 +03:00

5 lines
122 B
Kotlin
Vendored

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