8 Statements [stmt.stmt]

8.7 Jump statements [stmt.jump]

8.7.4 The co_Β­return statement [stmt.return.coroutine]

coroutine-return-statement:
	co_return expr-or-braced-init-list ;
A coroutine returns to its caller or resumer ([dcl.fct.def.coroutine]) by the co_Β­return statement or when suspended ([expr.await]).
A coroutine shall not enclose a return statement ([stmt.return]).
Note
:
For this determination, it is irrelevant whether the return statement is enclosed by a discarded statement ([stmt.if]).
β€” end note
 ]
The expr-or-braced-init-list of a co_Β­return statement is called its operand.
Let p be an lvalue naming the coroutine promise object ([dcl.fct.def.coroutine]).
A co_Β­return statement is equivalent to:
{ S; goto final-suspend; }
where final-suspend is the exposition-only label defined in [dcl.fct.def.coroutine] and S is defined as follows:
If p.return_Β­void() is a valid expression, flowing off the end of a coroutine is equivalent to a co_Β­return with no operand; otherwise flowing off the end of a coroutine results in undefined behavior.