Files
kotlin-fork/idea/testData/intentions/iterateExpression/extensionIteratorWithPartialSubstitution1.kt
T
2015-12-25 18:50:23 +03:00

8 lines
153 B
Kotlin
Vendored

// WITH_RUNTIME
class T<U, V>
operator fun <X> T<X, String>.iterator(): Iterator<X> = listOf<X>().iterator()
fun test() {
T<Int, String>()<caret>
}