8a545f05de
See more in KT-20171
8 lines
150 B
Plaintext
Vendored
8 lines
150 B
Plaintext
Vendored
// "Surround with *arrayOf(...)" "true"
|
|
// LANGUAGE_VERSION: 1.2
|
|
|
|
fun anyFoo(vararg a: Any) {}
|
|
|
|
fun test() {
|
|
anyFoo(a = *arrayOf(intArrayOf(1)))
|
|
} |