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

5 lines
121 B
Kotlin
Vendored

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