61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
18 lines
183 B
Kotlin
18 lines
183 B
Kotlin
package a
|
|
|
|
class A() {
|
|
}
|
|
|
|
class B() {
|
|
}
|
|
|
|
fun B.next(): Int = 3
|
|
|
|
fun B.hasNext(): Boolean = false
|
|
|
|
fun A.iterator() = B()
|
|
|
|
<selection>fun f() {
|
|
for (i in A()) {
|
|
}
|
|
}</selection> |