[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Sema / attr-deprecated-message.c
blob5a0d91af316e258b359fafa214c3d15362a240f2
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
3 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' has been explicitly marked deprecated here}}
5 typedef INT1 INT2 __attribute__ ((__deprecated__("Please avoid INT2")));
7 typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
9 typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
11 INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
12 INT1a should_not_be_deprecated;
14 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' has been explicitly marked deprecated here}}
15 INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
17 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' has been explicitly marked deprecated here}}
20 Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}}
22 int g1;
23 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' has been explicitly marked deprecated here}}
25 int func1(void)
27 int (*pf)(void) = f1; // expected-warning {{'f1' is deprecated: Please avoid f1}}
28 int i = f2();
29 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}