Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
c2x-attr-nodiscard-4.c
blob: 278f55d1e5da59998e61362fdb2627eef7634cb5 [
file
] [
log
] [
blame
]
/* 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
);