diff --git a/kotlinx-coroutines-core/common/src/flow/Migration.kt b/kotlinx-coroutines-core/common/src/flow/Migration.kt index 090f6f409b..eef5e9eb5e 100644 --- a/kotlinx-coroutines-core/common/src/flow/Migration.kt +++ b/kotlinx-coroutines-core/common/src/flow/Migration.kt @@ -369,7 +369,7 @@ public fun Flow.combineLatest( other: Flow, other2: Flow, transform: suspend (T1, T2, T3) -> R -) = combine(this, other, other2, transform) +): Flow = combine(this, other, other2, transform) /** @suppress */ @Deprecated( @@ -382,7 +382,7 @@ public fun Flow.combineLatest( other2: Flow, other3: Flow, transform: suspend (T1, T2, T3, T4) -> R -) = combine(this, other, other2, other3, transform) +): Flow = combine(this, other, other2, other3, transform) /** @suppress */ @Deprecated(