blob: 2e080bae1f2b361dc1a723c46abd86e4690a8ba0 [file] [log] [blame]
Fariborz Jahanian2b1d51b2010-10-05 23:24:00 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only
2
3struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}}
4
5typeof(x) y; // expected-warning {{'s' is deprecated}}
6
7union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}}
8
9typeof( u) z; // expected-warning {{'un' is deprecated}}
10
11enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}}
12
13typeof( e) w; // expected-warning {{'E' is deprecated}}