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

7 lines
148 B
Kotlin

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