2021-12-09 20:19:05 +02:00
|
|
|
// Copyright 2021 Peter Dimov.
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
|
|
#include <boost/system/result.hpp>
|
|
|
|
#include <boost/core/lightweight_test_trait.hpp>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
using namespace boost::system;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<int>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<int>, errc::errc_t>));
|
|
|
|
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<double>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<double>, errc::errc_t>));
|
|
|
|
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<bool>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<bool>, errc::errc_t>));
|
|
|
|
|
2023-09-12 03:34:24 +03:00
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<int const&>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<int const&>, errc::errc_t>));
|
|
|
|
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<double const&>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<double const&>, errc::errc_t>));
|
|
|
|
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_convertible<errc::errc_t, result<bool const&>>));
|
|
|
|
BOOST_TEST_TRAIT_FALSE((std::is_constructible<result<bool const&>, errc::errc_t>));
|
|
|
|
|
2021-12-09 20:19:05 +02:00
|
|
|
return boost::report_errors();
|
|
|
|
}
|