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

6 lines
134 B
Kotlin

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