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

20 lines
456 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()
{
// Wrong function signature
BOOST_MPL_ASSERT((AnotherName<AnotherType,long,boost::mpl::vector<int &> >));
return 0;
}