diff --git a/test/playground/test-playground.cpp b/test/playground/test-playground.cpp index 793c00c..997e85c 100644 --- a/test/playground/test-playground.cpp +++ b/test/playground/test-playground.cpp @@ -25,22 +25,4 @@ using namespace cti; int main(int, char**) { - // ... - auto e = std::make_exception_ptr(std::exception("huhu")); - - async_on( - [] { - // - int i = 0; - }, - [&](work work) { - int i = 0; - (void)i; - work.set_exception(e); // - }) - .fail([](exception_t e) { - // - int i = 0; - (void)i; - }); }