Skip to content

Commit 56b9af2

Browse files
authored
Merge pull request #3876 from Kotlin/bobova/supressKT-22841
Kotlin 1.9.20 migration: Fix ACTUAL_CLASSIFIER_MUST_HAVE_THE_SAME_MEM…BERS_AS_NON_FINAL_EXPECT_CLASSIFIER compilation error (#3870)
2 parents 9d1c62a + 454acd8 commit 56b9af2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

kotlinx-coroutines-core/native/test/ConcurrentTestUtilities.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ private object BlackHole {
2525
var sink = 1
2626
}
2727

28-
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS")
28+
@Suppress(
29+
// fixme replace the suppress with AllowDifferentMembersInActual once stdlib is updated to 1.9.20 https://github.com/Kotlin/kotlinx.coroutines/issues/3846
30+
"ACTUAL_CLASSIFIER_MUST_HAVE_THE_SAME_MEMBERS_AS_NON_FINAL_EXPECT_CLASSIFIER",
31+
)
2932
internal actual typealias SuppressSupportingThrowable = SuppressSupportingThrowableImpl
3033

3134
actual val Throwable.suppressed: Array<Throwable>

0 commit comments

Comments
 (0)