Lyulf

Results 3 issues of Lyulf

Code: ```c++ #include #include #include namespace asio = boost::asio; namespace cobalt = boost::cobalt; asio::awaitable emptyAsioAwaitable() { std::puts("Inside ASIO"); co_return; } cobalt::task emptyCobaltTask() { std::puts("Inside COBALT"); co_return; } void testCobalt() {...

Code: ```c++ #include #include #include #include namespace cobalt = boost::cobalt; struct ExampleStruct { std::string str; std::uint8_t padding[32]; }; cobalt::task getResult() { // error on this return co_return {}; } cobalt::main...

Following code: ``` #include namespace cobalt = boost::cobalt; cobalt::thread emptyThread() { co_return; } int main(int /*argc*/, char** /*argv*/) { auto thread = emptyThread(); thread.join(); return 0; } ``` Built on...