Files
kotlin-fork/idea/testData/intentions/replaceMathMaxWithCoerceAtLeast/doubles.kt
T

7 lines
82 B
Kotlin
Vendored

// WITH_RUNTIME
import java.lang.Math.max
fun foo() {
max(1.1, 1.2)<caret>
}