Files
kotlin-fork/idea/testData/inspectionsLocal/convertTwoComparisonsToRangeCheck/binary.kt
T
2020-02-16 15:56:44 +09:00

5 lines
94 B
Kotlin
Vendored

fun test(c: Int) {
if (<caret>c > 0b1101100000000000 && c < 0b1101110000000000) {
}
}