Skip to content

Commit 5ac6472

Browse files
committed
Fix NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS compilation error
The compilation error appeared after KT-59665
1 parent b9ff218 commit 5ac6472

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public actual val isNative = true
1515
@Suppress("ACTUAL_WITHOUT_EXPECT")
1616
public actual typealias TestResult = Unit
1717

18+
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS") // Counterpart for @Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
1819
public actual open class TestBase actual constructor() {
1920
public actual val isBoundByJsTestTimeout = false
2021
private var actionIndex = atomic(0)

0 commit comments

Comments
 (0)