// // Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail 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) // // Test that header file is self-contained. #include #include #include #include namespace beast { namespace { struct handler { void operator()(beast::error_code, std::size_t) const; }; static_assert(detail::is_invocable< typename async_result::completion_handler_type, void(error_code, std::size_t)>::value, ""); static_assert(std::is_same::return_type>::value, ""); static_assert(std::is_constructible< async_result, typename async_result::completion_handler_type&>::value, ""); } // (anon-ns) } // beast