2
0
mirror of https://github.com/boostorg/cmake.git synced 2026-02-23 15:42:15 +00:00
Files
cmake/test/mp11/main.cpp
2019-12-22 20:09:25 +02:00

9 lines
172 B
C++

#include <boost/mp11.hpp>
using namespace boost::mp11;
int main()
{
using L1 = mp_list<int, float, int, float>;
return mp_size<mp_unique<L1>>::value == 2? 0: 1;
}