blob: f48d13e607dd732e90d68135d9bc10a0f7e563e8 [file] [log] [blame]
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only
2// rdar: // 6734520
3
Eli Friedmanc3b23082012-08-08 21:52:41 +00004typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' declared here}}
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00005
6typedef INT1 INT2 __attribute__ ((__deprecated__("Please avoid INT2")));
7
8typedef INT1 INT1a; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
9
10typedef INT1 INT1b __attribute__ ((deprecated("Please avoid INT1b")));
11
12INT1 should_be_unavailable; // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
13INT1a should_not_be_deprecated;
14
Eli Friedmanc3b23082012-08-08 21:52:41 +000015INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared here}}
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +000016INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
17
Eli Friedmanc3b23082012-08-08 21:52:41 +000018typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}}
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +000019
20
21Color c1; // expected-warning {{'Color' is deprecated: Please avoid Color}}
22
23int g1;
Fariborz Jahaniand6724362012-04-23 20:30:52 +000024int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}}
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +000025
26int func1()
27{
28 int (*pf)() = 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}}
31}