llvm-project/clang/test/SemaCXX/cxx-deprecated.cpp
Vlad Serebrennikov a68d20e986
[clang] Implement CWG2428 "Deprecating a concept" (#92295)
This patch allows attributes to be attached to C++20 concepts,
implementing
[CWG2428](https://cplusplus.github.io/CWG/issues/2428.html).
2024-05-17 16:02:44 +04:00

40 lines
984 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify -std=c++20 %s
namespace [[deprecated]] {} // expected-warning {{'deprecated' attribute on anonymous namespace ignored}}
namespace [[deprecated]] N { // expected-note 4{{'N' has been explicitly marked deprecated here}}
int X;
int Y = X; // Ok
int f();
}
int N::f() { // Ok
return Y; // Ok
}
void f() {
int Y = N::f(); // expected-warning {{'N' is deprecated}}
using N::X; // expected-warning {{'N' is deprecated}}
int Z = X; //Ok
}
void g() {
using namespace N; // expected-warning {{'N' is deprecated}}
int Z = Y; // Ok
}
namespace M = N; // expected-warning {{'N' is deprecated}}
// Shouldn't diag:
[[nodiscard, deprecated("")]] int PR37935();
namespace cxx20_concept {
template <typename>
concept C __attribute__((deprecated)) = true; // #C
template <C T>
// expected-warning@-1 {{'C' is deprecated}}
// expected-note@#C {{'C' has been explicitly marked deprecated here}}
void f();
} // namespace cxx20_concept