| 9 | |
| 10 | |
| 11 | int main() { |
| 12 | BOOST_HANA_CONSTEXPR_LAMBDA auto to_char = [](int x) { |
| 13 | return static_cast<char>(x + 48); |
| 14 | }; |
| 15 | |
| 16 | BOOST_HANA_CONSTEXPR_LAMBDA auto increment = [](auto x) { |
| 17 | return x + 1; |
| 18 | }; |
| 19 | |
| 20 | BOOST_HANA_CONSTEXPR_CHECK(hana::compose(to_char, increment)(3) == '4'); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected