]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/mp11/test/cmake_subdir_test/main.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / mp11 / test / cmake_subdir_test / main.cpp
1 #include <boost/mp11.hpp>
2 using namespace boost::mp11;
3
4 int main()
5 {
6 using L1 = mp_list<int, float, int, float>;
7 return mp_size<mp_unique<L1>>::value == 2? 0: 1;
8 }