[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / attr-deprecated-message.c
blob4cdce0e5432682dd8f4621e7af11c5db5cef9023
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 // rdar: // 6734520
4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' has been explicitly marked deprecated here}}
6 typedef INT1 INT2 __attribute__ ((__deprecated__("Please avoid INT2")));
8 typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
10 typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
12 INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
13 INT1a should_not_be_deprecated;
15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' has been explicitly marked deprecated here}}
16 INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' has been explicitly marked deprecated here}}
21 Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}}
23 int g1;
24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' has been explicitly marked deprecated here}}
26 int func1(void)
28 int (*pf)(void) = f1; // expected-warning {{'f1' is deprecated: Please avoid f1}}
29 int i = f2();
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}