Files
kotlin-fork/idea/testData/intentions/replaceSizeZeroCheckWithIsEmpty/gteq.kt
T

6 lines
91 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val listOf = listOf(1, 2, 3)
0 >= listOf.size<caret>
}