IR text tests: Unmute tests that have main function

Don't use `main` function in these tests, because `main` function
has specific mangling rules in JVM. Use other function name.

^KT-57755
This commit is contained in:
Dmitriy Dolovov
2023-12-18 16:20:48 +01:00
committed by Space Team
parent 1759b9e3c4
commit af247c3344
32 changed files with 325 additions and 372 deletions
@@ -1,10 +1,7 @@
// SKIP_KT_DUMP
// !LANGUAGE: +SuspendConversion
// MUTE_SIGNATURE_COMPARISON_K2: JVM_IR
// ^ KT-57755: Fix computing a mangled name for the `main` function
fun main() {
fun runMe() {
val foo: String.(suspend () -> Unit) -> Unit = {}
val f: () -> Unit = {}
"".foo(f)