Skip to content

Commit 83f743b

Browse files
committed
Fix NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS compilation error (#3826)
The compilation error appeared after KT-59665
1 parent a12ae43 commit 83f743b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public actual typealias TestResult = Unit
5454
* }
5555
* ```
5656
*/
57+
@Suppress("NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS") // Counterpart for @Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
5758
public actual open class TestBase(private var disableOutCheck: Boolean) {
5859

5960
actual constructor(): this(false)

0 commit comments

Comments
 (0)