af247c3344
Don't use `main` function in these tests, because `main` function has specific mangling rules in JVM. Use other function name. ^KT-57755
9 lines
161 B
Kotlin
Vendored
9 lines
161 B
Kotlin
Vendored
// SKIP_KT_DUMP
|
|
// !LANGUAGE: +SuspendConversion
|
|
|
|
fun runMe() {
|
|
val foo: String.(suspend () -> Unit) -> Unit = {}
|
|
val f: () -> Unit = {}
|
|
"".foo(f)
|
|
}
|