Improve error message if you co_await a non-awaitable #702
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previous error message was
New error message is
If you
co_awaitsomething that has both a memberoperator co_awaitas well as a freeoperator co_await, the error message used to beand it is now
The C++ standard has rules for resolving the ambiguity, but they are difficult to express in template metaprogramming, so we don't try and simply reject them. Hasn't been a problem yet. Added some ambiguous awaiters to the unit tests to verify that we resolve to the correct one in the cases we support.
Remove vestigial support for free awaiters, which is left over from an earlier iteration of the coroutine TS.
(There is an interesting asymmetry in
awaiter_finder: We always search forawait_readyon an lvalue, whereas theoperator co_awaituses the original reference category of the object being awaited. This is a consequence of the language specification, which converts the awaiter to an lvalue after applyingoperator co_awaitbut before callingawait_ready.)