af247c3344
Don't use `main` function in these tests, because `main` function has specific mangling rules in JVM. Use other function name. ^KT-57755
11 lines
327 B
Kotlin
Vendored
11 lines
327 B
Kotlin
Vendored
// CHECK JVM_IR:
|
|
// Mangled name: #runMe(){}
|
|
// Public signature: /runMe|1754039929145531074[0]
|
|
// Public signature debug description: runMe(){}
|
|
// CHECK JS_IR NATIVE:
|
|
// Mangled name: #runMe(){}
|
|
// Public signature: /runMe|1754039929145531074[0]
|
|
// Public signature debug description: runMe(){}
|
|
fun runMe(): Unit
|
|
|