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

5 lines
91 B
Kotlin
Vendored

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