summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/spaceship-synth7.C
blob: 86b661ca6e00db42bb1b618e8b65f4498a3aefc9 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/94583
// { dg-do compile { target c++2a } }

namespace std { struct strong_ordering { }; }

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