// PR c++/88313 // { dg-do compile { target c++20 } } template constexpr int f() { return N; } template constexpr auto g() { return F; } template constexpr int h(T t = {}) { return t(42); } static_assert(f() == 42); static_assert(g()(42) == 42); static_assert(h() == 42);