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

9 lines
177 B
Kotlin

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