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

4 lines
74 B
Kotlin
Vendored

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