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

8 lines
135 B
Plaintext
Vendored

// WITH_RUNTIME
import java.lang.Math.abs
fun x() {
listOf<Int>()
.take(10)
.filter { kotlin.math.abs(it) < 10 }
}