1c74bab1cc
#KT-8616 Fixed
8 lines
134 B
Kotlin
Vendored
8 lines
134 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
class T<U>
|
|
|
|
operator fun <U> T<U>.iterator(): Iterator<U> = listOf<U>().iterator()
|
|
|
|
fun test() {
|
|
T<Int>()<caret>
|
|
} |