aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/standards/cpp20/main.cpp
blob: e49a4fc5fff664d302d8dd6cf919e9e648814df4 (plain)
1
2
3
4
5
6
7
#include <compare>

struct Foo {
  friend auto operator<=>(Foo const &, Foo const &) { return true; }
};

int main() { return Foo{} <=> Foo{}; }