2076a31094
Use static methods from KotlinBuiltIns and check all supertypes, support cases of Collection, Map and CharSequence
7 lines
96 B
Kotlin
Vendored
7 lines
96 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
val c: Collection<String> = listOf("")
|
|
c.size<caret> > 0
|
|
}
|