Files
kotlin-fork/idea/testData/quickfix/createFromUsage/set/beforeCreateSetFromUsage1.kt
T

7 lines
157 B
Kotlin

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