(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
spaceship-synth7.C
// PR c++/94583
// { dg-do compile { target c++20 } }

namespace std { struct strong_ordering { }; }

struct Q {
  friend std::strong_ordering operator<=>(const Q&, const Q&) = default;
};
bool operator==(const Q&, const Q&) noexcept;