a1e86e8bfa
(cherry picked from commit a51d3fc)
12 lines
227 B
Kotlin
Vendored
12 lines
227 B
Kotlin
Vendored
// "Create member function 'Foo.get'" "true"
|
|
|
|
import java.util.ArrayList
|
|
|
|
class Foo<T> {
|
|
fun bar(arg: String) { }
|
|
fun <T, V> x (y: Foo<List<T>>, w: ArrayList<V>) {
|
|
val z = y<caret>["", w]
|
|
bar(z)
|
|
}
|
|
}
|