Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wnonnull1.C
blob: 0f610f449c72e420a9cfe3c1b18b782deb9cfd57 [
file
] [
log
] [
blame
]
// { dg-options -Wnonnull }
void
g
(
void
*)
__attribute__
((
nonnull
(
1
)));
void
f
(
void
*
p
)
{
g
(
1
==
1
?
p
:
0
);
}