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

3 lines
58 B
Kotlin
Vendored

fun foo(bar: Char) {
bar >= 'a' && 'z' >= bar<caret>
}