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

11 lines
215 B
Kotlin

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