Files
kotlin-fork/idea/testData/intentions/replaceMathMaxWithCoerceAtLeast/maxInMax.kt.after
T
2017-07-26 20:12:53 +03:00

6 lines
100 B
Plaintext
Vendored

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