Clean the playground since the test was moved into the unit tests

This commit is contained in:
Denis Blank 2019-09-02 00:17:17 +02:00
parent a2fdfdfceb
commit dce0fbcffe

View File

@ -25,22 +25,4 @@
using namespace cti; using namespace cti;
int main(int, char**) { 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;
});
} }