Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/set/beforeCreateSetFromUsage2.kt
Valentin Kipyatkov cf04ba4943 Corrected test data
2014-10-31 21:07:51 +03:00

8 lines
149 B
Kotlin

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