blob: 6a03f54b91aee6ecaf6bd7eae0f4f2e34edc84a4 [file] [log] [blame]
// { dg-do compile { target c++2a } }
// missing #include <compare>
template <class T, T x = (T() <=> T()) == 0>
void f(T);
constexpr int f(...) { return 42; }
constexpr int i = f(24);