blob: 2e70d12bff33e1f568ec14d5afa759d23e1d58f3 [file] [log] [blame]
/* Test C2x nodiscard attribute: invalid syntax. */
/* { dg-do compile } */
/* { dg-options "-std=c2x -pedantic-errors" } */
[[nodiscard()]] int a (void); /* { dg-error "parentheses must be omitted if attribute argument list is empty" } */
[[nodiscard(0)]] int b (void); /* { dg-error "expected" } */
[[nodiscard("", 123)]] int c (void); /* { dg-error "expected" } */
[[nodiscard((""))]] int d (void); /* { dg-error "expected" } */