05cbe66ee0
Rename `main` function to `test` to avoid running JVM-specific mangling and having different IR signature dumps for K1 and K2. ^KT-65588
14 lines
410 B
Kotlin
Vendored
14 lines
410 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: #consumeVarargs(kotlin.IntArray...){}
|
|
// Public signature: /consumeVarargs|2702777436513705083[0]
|
|
// Public signature debug description: consumeVarargs(kotlin.IntArray...){}
|
|
fun consumeVarargs(vararg arr: Int): Unit
|
|
|
|
// CHECK:
|
|
// Mangled name: #test(){}
|
|
// Public signature: /test|6620506149988718649[0]
|
|
// Public signature debug description: test(){}
|
|
fun test(): Unit
|
|
|
|
|