| 551 | |
| 552 | template <typename Unary, typename Pattern> |
| 553 | constexpr auto app(Unary &&unary, Pattern const &pattern) |
| 554 | { |
| 555 | return App<Unary, Pattern>{std::forward<Unary>(unary), pattern}; |
| 556 | } |
| 557 | |
| 558 | constexpr auto y = 1; |
| 559 | static_assert(std::holds_alternative<int32_t const *>( |
no outgoing calls
no test coverage detected