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

[[maybe_unused()]] int a; /* { dg-error "does not take any arguments" } */

[[maybe_unused(0)]] int b; /* { dg-error "does not take any arguments|expected" } */

[[maybe_unused("", 123)]] int c; /* { dg-error "does not take any arguments|expected" } */

[[maybe_unused("")]] int d; /* { dg-error "does not take any arguments|expected" } */