this post was submitted on 18 Apr 2026
437 points (90.1% liked)
Programmer Humor
31275 readers
2171 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You are running into the Send Approximation being too conservative. The compiler does not like to see a let binding for a non-Send type and an
.awaitstatement in the same scope. It is not (yet) smart enough to know that the non-Send type is already consumed by the time of the.await.You've already discovered the workaround in your
three(). To make it more concise