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