| 10 | |
| 11 | |
| 12 | constexpr char next(char c) { return c + 1; } |
| 13 | |
| 14 | static_assert(hana::ap(hana::just(next), hana::just('x')) == hana::just('y'), ""); |
| 15 | BOOST_HANA_CONSTANT_CHECK(hana::ap(hana::nothing, hana::just('x')) == hana::nothing); |
nothing calls this directly
no outgoing calls
no test coverage detected