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

5 lines
87 B
Kotlin
Vendored

// PROBLEM: none
// DISABLE-ERRORS
fun foo(bar: Char) {
bar > 1 && 2 > bar<caret>
}