From ffc0276215f010fa2507165286326127f46f0b4c Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Thu, 23 May 2019 17:46:16 +0300 Subject: [PATCH] Fix compiler testdata broken in 95544b0 --- .../testData/diagnostics/testsWithStdLib/coroutines/kt18292.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/testsWithStdLib/coroutines/kt18292.kt b/compiler/testData/diagnostics/testsWithStdLib/coroutines/kt18292.kt index d67d076b847..91bcfe965c3 100644 --- a/compiler/testData/diagnostics/testsWithStdLib/coroutines/kt18292.kt +++ b/compiler/testData/diagnostics/testsWithStdLib/coroutines/kt18292.kt @@ -15,6 +15,6 @@ suspend fun fib(n: Long) = async { when { n < 2 -> n - else -> fib(n - 1).await() + fib(n - 2).await() + else -> fib(n - 1).await() + fib(n - 2).await() } } \ No newline at end of file