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

10 lines
189 B
Kotlin
Vendored

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