From 29493a497750a3a1410901126e0be8df3f7c96df Mon Sep 17 00:00:00 2001 From: "victor.petukhov" Date: Sat, 16 Mar 2019 14:12:51 +0300 Subject: [PATCH] Fix 'nothingTypedSuspendFunction' test after 70c35f4186b56554bcb1cd17a89124e5a460297c --- .../coroutines/tailCalls/nothingTypedSuspendFunction.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/testsWithStdLib/coroutines/tailCalls/nothingTypedSuspendFunction.kt b/compiler/testData/diagnostics/testsWithStdLib/coroutines/tailCalls/nothingTypedSuspendFunction.kt index fda16df7def..9da78dbc107 100644 --- a/compiler/testData/diagnostics/testsWithStdLib/coroutines/tailCalls/nothingTypedSuspendFunction.kt +++ b/compiler/testData/diagnostics/testsWithStdLib/coroutines/tailCalls/nothingTypedSuspendFunction.kt @@ -4,6 +4,6 @@ import COROUTINES_PACKAGE.* import COROUTINES_PACKAGE.intrinsics.* suspend fun suspendLogAndThrow(exception: Throwable): Nothing = suspendCoroutineUninterceptedOrReturn { c -> - c.resumeWithException(exception) + c.resumeWithException(exception) COROUTINE_SUSPENDED }