]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/type_traits/test/compile_fail/is_convertible2_fail.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / type_traits / test / compile_fail / is_convertible2_fail.cpp
1
2 // (C) Copyright John Maddock 2017.
3 // Use, modification and distribution are subject to the
4 // Boost Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 # include <boost/type_traits/is_convertible.hpp>
8 #include "../test.hpp"
9
10 #ifndef BOOST_TT_HAS_WORKING_IS_COMPLETE
11 #error "Sorry can't test this."
12 #endif
13
14 int main()
15 {
16 return boost::is_convertible<incomplete_type, UDT>::value;
17 }
18
19