Files
kotlin-fork/idea/testData/intentions/replaceSizeCheckWithIsNotEmpty/set.kt
T

6 lines
87 B
Kotlin
Vendored

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