Home
Manpages
About
(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
pr99906.c
1
void
bar
(
void
*
)
__attribute__
((
__nonnull__
))
;
2
void
*
baz
(
void
)
;
3
void
foo
(
void
)
{
bar
(
baz
(
)
)
;
}