JVM_IR: Minor. Unmute tests

This commit is contained in:
Ilmir Usmanov
2019-12-17 16:28:39 +01:00
parent 5c92da3f35
commit 1ea89ce28e
4 changed files with 0 additions and 4 deletions
@@ -1,5 +1,4 @@
// !LANGUAGE: +ReleaseCoroutines
// IGNORE_BACKEND: JVM_IR
inline fun inlineMe(crossinline c: suspend () -> Int): suspend () -> Int {
val i: suspend () -> Int = { c() + c() }
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// WITH_COROUTINES
import helpers.*
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
class Handler(val func: suspend (Any) -> Unit)
inline fun createHandler(crossinline handler: suspend (Any) -> Unit): Handler {
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun <T> builder(c: suspend () -> T): T = TODO()
class Test {