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