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

7 lines
144 B
Kotlin

// "Create function 'get' from usage" "true"
class Foo<T> {
fun x (y: Foo<Iterable<T>>) {
val z: Iterable<T> = y<caret>[""]
}
}