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

8 lines
158 B
Kotlin
Vendored

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