diff --git a/include/utempl/utils.hpp b/include/utempl/utils.hpp index 142ccfb..c42c9c9 100644 --- a/include/utempl/utils.hpp +++ b/include/utempl/utils.hpp @@ -280,7 +280,6 @@ inline constexpr auto Curry(F&& f) -> Curryer> { return {.f = std::forward(f), .data = Tuple{}}; }; -static_assert(Curry([](auto... args) {return (0 + ... + args);})(1)(2)(3) == 6); } // namespace utempl