From dce0fbcffe8b73adb726cdeede0f3851921603e5 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Mon, 2 Sep 2019 00:17:17 +0200 Subject: [PATCH] Clean the playground since the test was moved into the unit tests --- test/playground/test-playground.cpp | 18 ------------------ 1 file changed, 18 deletions(-) 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; - }); }