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

5 lines
70 B
Kotlin
Vendored

fun test(c: Int) {
if (<caret>c > 0xd800 && c < 0xdc00) {
}
}