Files
kotlin-fork/idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage9.kt
T

9 lines
192 B
Kotlin

// "Create function 'get' from usage" "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]
}
}