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

5 lines
101 B
Plaintext
Vendored

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