Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
format7.C
blob: 6e84069eec520f6fefb86d27c6e48dd7ebf61738 [
file
] [
log
] [
blame
]
// PR c++/50757
// { dg-options "-Wformat -Wno-nonnull" }
extern
void
*
f
(
void
*
__s
)
__attribute__
((
__nonnull__
(
1
)));
int
main
()
{
void
*
const
s
=
0
;
f
(
s
);
}