aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c2x-attr-deprecated-4.c
blob: 7698434cc6d9a2bf1c0b2048d8437b2504086f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test C2x deprecated attribute: duplicates (allowed after N2557).  */
/* { dg-do compile } */
/* { dg-options "-std=c2x -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]];