JVM_IR: Support inline suspend lambdas

This commit is contained in:
Ilmir Usmanov
2019-09-16 20:20:10 +03:00
parent 61ae98df40
commit 0e3f0c98e5
7 changed files with 67 additions and 21 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
data class A(val x: String, val y: String)
suspend inline fun foo(a: A, block: suspend (A) -> String): String = block(a)