2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-19 04:42:14 +00:00
Files
tti/test/test_has_member_template_fail3.cpp
2020-01-13 20:10:37 -05:00

20 lines
489 B
C++

// (C) Copyright Edward Diener 2019
// Use, modification and distribution are subject to 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 "test_has_mem_fun_template.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// With default parameters you must still specify complete member function prototype
BOOST_MPL_ASSERT((FTD<double (AType::*)(int,long)>));
return 0;
}