| 1 | // Copyright Louis Dionne 2013-2022 |
| 2 | // Distributed under the Boost Software License, Version 1.0. |
| 3 | // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) |
| 4 | |
| 5 | #include <boost/hana/assert.hpp> |
| 6 | #include <boost/hana/concept/ring.hpp> |
| 7 | #include <boost/hana/mult.hpp> |
| 8 | #include <boost/hana/one.hpp> |
| 9 | #include <boost/hana/tuple.hpp> |
| 10 | |
| 11 | #include <laws/ring.hpp> |
| 12 | namespace hana = boost::hana; |
| 13 | |
| 14 | |
| 15 | int main() { |
| 16 | hana::test::TestRing<int>{hana::make_tuple(0,1,2,3,4,5)}; |
| 17 | hana::test::TestRing<long>{hana::make_tuple(0l,1l,2l,3l,4l,5l)}; |
| 18 | |
| 19 | // one |
| 20 | static_assert(hana::one<int>() == 1, "" ); |
| 21 | |
| 22 | // mult |
| 23 | static_assert(hana::mult(6, 4) == 6 * 4, "" ); |
| 24 | } |
| 25 | |