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

5 lines
98 B
Kotlin
Vendored

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