From 1b17902086429d2f16f70f8826031abe9a125fbc Mon Sep 17 00:00:00 2001 From: Margarita Bobova Date: Wed, 30 Aug 2023 10:50:29 +0200 Subject: [PATCH] Kotlin 1.9.20 migration: Fix NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS compilation error The compilation error appeared after KT-59665 --- kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt b/kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt index 6690972dfa..fb97a1f14f 100644 --- a/kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt +++ b/kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt @@ -25,6 +25,7 @@ private object BlackHole { var sink = 1 } +@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS") internal actual typealias SuppressSupportingThrowable = SuppressSupportingThrowableImpl actual val Throwable.suppressed: Array