Files
kotlin-fork/idea/testData/quickfix/autoImports/iteratorOperator.after.kt
T
2019-10-29 18:35:14 +07:00

12 lines
215 B
Kotlin
Vendored

// "Import" "true"
// ERROR: For-loop range must have an 'iterator()' method
// WITH_RUNTIME
package bar
import foo.Foo
import foo.iterator
fun foo(start: Foo, end: Foo) {
for (date in start<caret>..end) {}
}