// Copyright 2022 Peter Dimov. // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt #include #include #include namespace sys = boost::system; int main() { { std::wostringstream os; os << sys::error_code(); BOOST_TEST( os.str() == L"system:0" ); } return boost::report_errors(); }