Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage13.kt
2016-07-20 15:39:19 +03:00

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)
}
}