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

10 lines
193 B
Kotlin
Vendored

// "Create member function 'Foo.get'" "true"
import java.util.ArrayList
class Foo<S> {
fun <T> x (y: Foo<List<T>>, w: ArrayList<T>) {
val z: Iterable<T> = y<caret>["", w]
}
}