diff --git a/kotlinx-coroutines-core/common/src/channels/Channel.kt b/kotlinx-coroutines-core/common/src/channels/Channel.kt index 3e3c0f5fae..25327d92f0 100644 --- a/kotlinx-coroutines-core/common/src/channels/Channel.kt +++ b/kotlinx-coroutines-core/common/src/channels/Channel.kt @@ -87,6 +87,7 @@ public interface SendChannel { * ``` * val channel = Channel() * launch { + * delay(100) * check(channel.receive() == 5) * } * channel.send(5) // suspends until 5 is received