Files
kotlin-fork/idea/testData/quickfix/surroundWithArrayOfForNamedArgumentsToVarargs/surroundWithSpreadForConstructorCall.kt.after
T
2017-09-26 14:49:43 +03:00

8 lines
138 B
Plaintext
Vendored

// "Surround with *arrayOf(...)" "true"
// LANGUAGE_VERSION: 1.2
class Foo<T>(vararg val p: T)
fun test() {
Foo(p = *arrayOf(123))
}