blob: 3e4d13d50141bb1006a0bebc1662cab1d16a6d6b [file] [log] [blame]
// WITH_RUNTIME
class T<U>
operator fun <U> T<U>.iterator(): Iterator<U> = listOf<U>().iterator()
fun test() {
T<Int>()<caret>
}