5b77210c95
#KT-2632 Fixed
14 lines
173 B
Kotlin
14 lines
173 B
Kotlin
class A {
|
|
fun component1() = 1
|
|
}
|
|
|
|
class C {
|
|
fun iterator(): Iterator<A> = null!!
|
|
}
|
|
|
|
fun test() {
|
|
for ((x, y) in <!COMPONENT_FUNCTION_MISSING!>C()<!>) {
|
|
|
|
}
|
|
}
|