aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c2x-attr-deprecated-4.c
blob: aa0d8e51ce4992351a0d2892c43e44bfdd6216dc (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test C23 deprecated attribute: duplicates (allowed after N2557).  */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */

[[deprecated, __deprecated__]] int a;
[[__deprecated__, deprecated("message")]] int b;
int c [[deprecated("message"), deprecated]];
[[deprecated, deprecated]];
/* { dg-error "ignored" "ignored" { target *-*-* } .-1 } */

[[deprecated]] [[deprecated]] int d [[deprecated]] [[deprecated]];