Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
);
}