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

7 lines
115 B
Kotlin
Vendored

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