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

6 lines
98 B
Kotlin
Vendored

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