Files
kotlin-fork/idea/testData/intentions/replaceMathMinWithCoerceAtMost/simple.kt.after
T

7 lines
79 B
Plaintext
Vendored

// WITH_RUNTIME
import java.lang.Math.min
fun foo() {
1.coerceAtMost(2)
}