Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage5.kt

8 lines
167 B
Kotlin
Vendored

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