[TD] Update testdata according to previous commit

This commit is contained in:
Dmitriy Novozhilov
2021-01-27 12:22:36 +03:00
parent 3a0eee64b8
commit 64a300bfcd
453 changed files with 736 additions and 777 deletions
@@ -28,4 +28,4 @@ fun box(): String {
res = if (isSuspend(::callMe)) callSuspend(::callMe) else "!isSuspend"
}
return res
}
}
@@ -31,4 +31,4 @@ fun box(): String {
res = if (adapted.isSuspend()) adapted.callSuspend() else "!isSuspend"
}
return res
}
}
@@ -1,3 +1,5 @@
// WITH_COROUTINES
// WITH_RUNTIME
// !LANGUAGE: +ReleaseCoroutines
// NO_CHECK_LAMBDA_INLINING
// FILE: test.kt
@@ -5,8 +7,6 @@
inline suspend fun foo(x: suspend () -> String) = x()
// FILE: box.kt
// WITH_RUNTIME
// WITH_COROUTINES
import helpers.ContinuationAdapter
import kotlin.coroutines.*