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

7 lines
146 B
Kotlin
Vendored

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