| 40 | |
| 41 | template<typename _AwrT> |
| 42 | void SyncAwait(_AwrT&& a) |
| 43 | { |
| 44 | // XXX: In the primary template Clang says there is no capture for this lambda. |
| 45 | auto asyncLambda = [&]() -> generator { co_await a; }; |
| 46 | |
| 47 | asyncLambda(); |
| 48 | } |
| 49 | |
| 50 | void f() |
| 51 | { |