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

8 lines
135 B
Kotlin
Vendored

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