llvm-for-llvmta/tools/clang/test/SemaTemplate/defaulted.cpp

11 lines
272 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -std=c++20 -verify %s
// expected-no-diagnostics
namespace SpaceshipImpliesEq {
template<typename T> struct A {
int operator<=>(const A&) const = default;
constexpr bool f() { return operator==(*this); }
};
static_assert(A<int>().f());
}