The title says it all.
Details
Details
Diff Detail
Diff Detail
Event Timeline
include/clang/Basic/DiagnosticSemaKinds.td | ||
---|---|---|
8569 | I am wondering, if we can handle all four cases when function can be a coroutine. co_await future<int> f() { co_return 42; } // is a valid coroutine per P0057R5 |
I am wondering, if we can handle all four cases when function can be a coroutine.
co_await
co_yield
co_return
for co_await
future<int> f() { co_return 42; } // is a valid coroutine per P0057R5