blob: 5d3479c345e9b8e44791ab28835d1011438cc848 [file] [log] [blame]
// PR c++/90098
// { dg-do compile { target c++2a } }
struct A {
int value;
// auto operator<=>(const A&) = default;
};
template<A... Us>
struct Z {};
template<A V, A... Rest>
struct Z<V, Rest...> {};