blob: cb5af5b9d05db6ecbb0c86ecf7544afaf231ae4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Test enumerators with attributes. */
/* PR c/47043 */
/* { dg-do compile } */
enum E {
A __attribute__((deprecated)),
B __attribute__((deprecated ("foo"))),
C __attribute__((deprecated)) = 10,
D __attribute__((deprecated ("foo"))) = 15,
E
};
int
f (int i)
{
i += A; /* { dg-warning ".A. is deprecated" } */
i += B; /* { dg-warning ".B. is deprecated" } */
i += C; /* { dg-warning ".C. is deprecated" } */
i += D; /* { dg-warning ".D. is deprecated" } */
i += E;
return i;
}
|