Add quickfix for removing redundant spread operator
#KT-25306 Fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Remove redundant *" "true"
|
||||
// LANGUAGE_VERSION: 1.4
|
||||
|
||||
fun takeVararg(vararg s: String) {}
|
||||
|
||||
fun test(strings: Array<String>) {
|
||||
takeVararg(s = *<caret>strings)
|
||||
}
|
||||
Reference in New Issue
Block a user