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

7 lines
80 B
Plaintext
Vendored

// WITH_RUNTIME
import java.lang.Math.max
fun foo() {
1.coerceAtLeast(2)
}