]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/type_traits/test/compile_fail/is_nothrow_move_constructible_fail.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / type_traits / test / compile_fail / is_nothrow_move_constructible_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_nothrow_move_constructible.hpp>
8 #include "../test.hpp"
9
10 int main()
11 {
12 return boost::is_nothrow_move_constructible<incomplete_type>::value;
13 }
14
15