1c74bab1cc
#KT-8616 Fixed
9 lines
178 B
Kotlin
Vendored
9 lines
178 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
class T<U, V>
|
|
|
|
operator fun <X> T<X, String>.iterator(): Iterator<X> = listOf<X>().iterator()
|
|
|
|
fun test() {
|
|
T<Int, Boolean>()<caret>
|
|
} |