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

[[maybe_unused, __maybe_unused__]] int a;
[[__maybe_unused__, maybe_unused]] int b;
int c [[maybe_unused, maybe_unused]];
[[maybe_unused, maybe_unused]];
/* { dg-error "ignored" "ignored" { target *-*-* } .-1 } */

[[maybe_unused]] [[maybe_unused]] int d [[maybe_unused]] [[maybe_unused]];