1c74bab1cc
#KT-8616 Fixed
10 lines
162 B
Plaintext
Vendored
10 lines
162 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
class T<U>
|
|
|
|
operator fun <U> T<U>.iterator(): Iterator<U> = listOf<U>().iterator()
|
|
|
|
fun test() {
|
|
for (i in T<Int>()) {
|
|
<caret>
|
|
}
|
|
} |