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

9 lines
193 B
Kotlin

// "Create function 'get'" "true"
import java.util.ArrayList
class Foo<T> {
fun <T, V> x (y: Foo<List<T>>, w: ArrayList<V>, v: T) {
val z: Iterable<T> = y<caret>["", w, v]
}
}