summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/integral_constant/hashable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/hana/test/integral_constant/hashable.cpp')
-rw-r--r--src/boost/libs/hana/test/integral_constant/hashable.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/boost/libs/hana/test/integral_constant/hashable.cpp b/src/boost/libs/hana/test/integral_constant/hashable.cpp
new file mode 100644
index 000000000..5c31355d0
--- /dev/null
+++ b/src/boost/libs/hana/test/integral_constant/hashable.cpp
@@ -0,0 +1,26 @@
+// Copyright Louis Dionne 2013-2017
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
+
+#include <boost/hana/integral_constant.hpp>
+#include <boost/hana/tuple.hpp>
+
+#include <laws/hashable.hpp>
+namespace hana = boost::hana;
+
+
+int main() {
+ constexpr auto ints = hana::make_tuple(
+ hana::integral_constant<char, 42>{}
+ , hana::integral_constant<signed char, 42>{}
+ , hana::integral_constant<signed short, 42>{}
+ , hana::integral_constant<signed int, 42>{}
+ , hana::integral_constant<signed long, 42>{}
+ , hana::integral_constant<unsigned char, 42>{}
+ , hana::integral_constant<unsigned short, 42>{}
+ , hana::integral_constant<unsigned int, 42>{}
+ , hana::integral_constant<unsigned long, 42>{}
+ );
+
+ hana::test::TestHashable<hana::integral_constant_tag<void>>{ints};
+}