Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/set/createSetFromUsage2.kt

9 lines
164 B
Kotlin
Vendored

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