2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-27 18:42:07 +00:00
Files
asio/test/properties/cpp14/can_query_not_applicable_static.cpp
2020-06-22 23:16:39 +10:00

28 lines
635 B
C++

//
// cpp14/can_query_not_applicable_static.cpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2020 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/query.hpp>
#include <cassert>
struct prop
{
template <typename> static constexpr int static_query_v = 123;
};
struct object
{
};
int main()
{
static_assert(!boost::asio::can_query_v<object, prop>, "");
static_assert(!boost::asio::can_query_v<const object, prop>, "");
}