if I create a buffered channel `val ch = Channel&l...
# coroutines
v
if I create a buffered channel
val ch = Channel<Int>(1_000_000)
then I expect
ch.offer(1)
to always return
true
, but it's not the case. Why?