05cbe66ee0
Rename `main` function to `test` to avoid running JVM-specific mangling and having different IR signature dumps for K1 and K2. ^KT-65588
11 lines
177 B
Kotlin
Vendored
11 lines
177 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_STDLIB
|
|
// ISSUE: KT-60312
|
|
|
|
fun test() {
|
|
consumeVarargs(1, 2)
|
|
consumeVarargs(arr = intArrayOf(41, 42))
|
|
}
|
|
|
|
fun consumeVarargs(vararg arr: Int) {}
|