https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90999
Bug ID: 90999 Summary: [MSYS2/MINGW64] std::experimental::net is broken Product: gcc Version: 9.1.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: matheus-catarino at hotmail dot com Target Milestone: --- Created attachment 46519 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=46519&action=edit gcc output error I've been testing a simple example in using io_context and several errors occur during the compile attempt. However in linux it works normally. Test code: #include <experimental/net> namespace net = std::experimental::net; int main() { net::io_context io; }