blob: 5add9de744fc5b2c8475d3cb5bd679e30c168f8b [file] [log] [blame]
/* Test C23 nodiscard attribute: duplicates (allowed after N2557). */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */
[[nodiscard, __nodiscard__]] int f (void);
[[__nodiscard__, nodiscard("message")]] int g (void);