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

5 lines
102 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
Pair(1.coerceAtLeast(3)<caret>, Math.max(2, 4)).let { println(it) }
}