Files
kotlin-fork/idea/testData/intentions/replaceMathMaxWithCoerceAtLeast/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.max(1, 3)<caret>, Math.max(2, 4)).let { println(it) }
}