blob: b3b36c29653c7bbfa3d2f0ba72e2e16be32120f4 [file] [log] [blame]
// WITH_RUNTIME
class T<U, V>
operator fun <X> T<X, String>.iterator(): Iterator<X> = listOf<X>().iterator()
fun test() {
for (i in T<Int, String>()) {
<caret>
}
}