| 69 | void thread(unsigned) |
| 70 | { |
| 71 | struct throwing_copy |
| 72 | { |
| 73 | throwing_copy() = default; |
| 74 | |
| 75 | throwing_copy(throwing_copy const &) |
| 76 | { |
| 77 | throw std::logic_error(""); |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 | exec::single_thread_context ctx; |
| 82 | ex::scheduler auto sch = ctx.get_scheduler(); |