Files
kotlin-fork/idea/testData/inspectionsLocal/convertTwoComparisonsToRangeCheck/gtDouble.kt
T
2019-10-29 17:24:21 +07:00

5 lines
90 B
Kotlin
Vendored

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