9 lines
204 B
Kotlin
9 lines
204 B
Kotlin
// "Create function 'get' from usage" "true"
|
|
import java.util.ArrayList
|
|
|
|
class Foo<T> {
|
|
fun <T, V> x (y: Foo<List<T>>, w: ArrayList<V>, v: T) {
|
|
val z: Iterable<T> = y<caret>["", w, v]
|
|
}
|
|
}
|