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

[[nodiscard, __nodiscard__]] int f (void);
[[__nodiscard__, nodiscard("message")]] int g (void);