blob: a4d8b32922fba9e904ddbe5a236a3559f882a088 [file] [log] [blame]
// PR c++/92496
// { dg-do compile { target c++20 } }
template<auto V>
struct A {};
struct B {
constexpr auto operator<=>(const B&) const = default; // { dg-error "" }
int value;
};
A<B{}> t;