blob: 68cc7415558feca7415ca07ccb27f78da357f123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Test for syntax support of various attribute permutations.
int
__attribute__((noreturn))
__attribute__((unused))
one(void); // OK
__attribute__((noreturn))
__attribute__((unused))
int
two(void); // OK
int
__attribute__((unused))
three (void)
__attribute__((noreturn)); // OK
__attribute__((unused))
int
four (void)
__attribute__((noreturn)); // OK
int
five(void)
__attribute__((noreturn))
__attribute__((unused)); // OK
__attribute__((noreturn))
int
__attribute__((unused)) // parse error before '__attribute__' in C++
six (void); // OK in C
|