mirror of
https://github.com/boostorg/asio.git
synced 2026-01-25 18:02:09 +00:00
33 lines
960 B
C++
33 lines
960 B
C++
//
|
|
// cpp03/can_require_not_applicable_unsupported.cpp
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2025 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#include <boost/asio/require.hpp>
|
|
#include <cassert>
|
|
|
|
template <int>
|
|
struct prop
|
|
{
|
|
};
|
|
|
|
template <int>
|
|
struct object
|
|
{
|
|
};
|
|
|
|
int main()
|
|
{
|
|
assert((!boost::asio::can_require<object<1>, prop<2> >::value));
|
|
assert((!boost::asio::can_require<object<1>, prop<2>, prop<3> >::value));
|
|
assert((!boost::asio::can_require<object<1>, prop<2>, prop<3>, prop<4> >::value));
|
|
assert((!boost::asio::can_require<const object<1>, prop<2> >::value));
|
|
assert((!boost::asio::can_require<const object<1>, prop<2>, prop<3> >::value));
|
|
assert((!boost::asio::can_require<const object<1>, prop<2>, prop<3>, prop<4> >::value));
|
|
}
|