Files
kotlin-fork/idea/testData/intentions/convertTwoComparisonsToRangeCheck/gtDouble.kt
T

5 lines
97 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(bar: Int) {
bar > 0.0 && 10.0 >= bar<caret>
}