Files
kotlin-fork/idea/testData/inspectionsLocal/collections/uselessCallOnNotNull/Sequence.kt
T

5 lines
80 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(s: Sequence<Int>) {
val foo = s<caret>.orEmpty()
}