Files
kotlin-fork/idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage5.kt
T

7 lines
170 B
Kotlin

// "Create function 'get' from usage" "true"
class Foo<T> {
fun <T, V> x (y: Foo<Iterable<T>>, w: Iterable<V>) {
val z: Iterable<T> = y<caret>["", w]
}
}