]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/tti/test/test_has_mem_fun_template_fail3.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / tti / test / test_has_mem_fun_template_fail3.cpp
CommitLineData
f67539c2
TL
1
2// (C) Copyright Edward Diener 2019
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6
7#include "test_has_mem_fun_template.hpp"
8#include <boost/mpl/assert.hpp>
9
10int main()
11 {
12
13 // With default parameters you must still specify complete member function prototype
14
15 BOOST_MPL_ASSERT((FTD<AType,double,boost::mpl::vector<int,long> >));
16
17 return 0;
18
19 }