You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 line
218 B

  1. #include <gtest/gtest.h>
  2. #include <cpputils/mp/intern/ebo.h>
  3. using namespace ::utl::mp::intern;
  4. struct Key { };
  5. using ebo_type = ebo<Key, int>;
  6. constexpr ebo_type myEbo(7);
  7. static_assert(myEbo.get() == 7, "ebo.get");