7 lines
148 B
Kotlin
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>[""]
|
|
}
|
|
}
|