d00d078b4f
Related to KT-29937
7 lines
132 B
Kotlin
Vendored
7 lines
132 B
Kotlin
Vendored
interface UseIterable : MyIterable<String> {
|
|
fun test() {
|
|
val it = iterator()
|
|
val split = spliterator()
|
|
}
|
|
}
|