| 258 | |
| 259 | template<typename Allocator> |
| 260 | co_context::generator<int, void, Allocator> |
| 261 | stateful_alloc_example(std::allocator_arg_t, Allocator) { |
| 262 | co_yield 42; |
| 263 | } |
| 264 | |
| 265 | struct member_coro { |
| 266 | co_context::generator<int> f() const { co_yield 42; } |