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

6 lines
147 B
Kotlin

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