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

8 lines
145 B
Kotlin
Vendored

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