mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
8 lines
147 B
Kotlin
Vendored
8 lines
147 B
Kotlin
Vendored
// "Surround with *arrayOf(...)" "true"
|
|
// LANGUAGE_VERSION: 1.2
|
|
|
|
fun anyFoo(vararg a: Any) {}
|
|
|
|
fun test() {
|
|
anyFoo(a = intArr<caret>ayOf(1))
|
|
} |