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

5 lines
107 B
Kotlin
Vendored

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