Files
kotlin-fork/idea/testData/intentions/convertTwoComparisonsToRangeCheck/charInt.kt
T
2017-05-09 10:31:32 +03:00

5 lines
94 B
Kotlin
Vendored

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