da9f0e7af8
Sometimes there are legitimate reasons to have two separate signature dumps for K1 and K2. ^KT-61797 Fixed
9 lines
203 B
Kotlin
Vendored
9 lines
203 B
Kotlin
Vendored
// SEPARATE_SIGNATURE_DUMP_FOR_K2
|
|
// ^ KT-60136: Spread operator works incorrectly in K1, but correctly in K2.
|
|
|
|
annotation class A(vararg val xs: String)
|
|
|
|
|
|
@A(*arrayOf("a"), *arrayOf("b"))
|
|
fun test() {}
|