Make sure it works in a constexpr context
| 27 | |
| 28 | // Make sure it works in a constexpr context |
| 29 | constexpr bool constexpr_context() { |
| 30 | BOOST_HANA_CONSTANT_ASSERT(constexpr_constant_bool<true>()); |
| 31 | BOOST_HANA_CONSTANT_ASSERT_MSG(constexpr_constant_bool<true>(), "message"); |
| 32 | return true; |
| 33 | } |
| 34 | static_assert(constexpr_context(), ""); |
| 35 | |
| 36 |