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

9 lines
168 B
Kotlin
Vendored

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