blob: f6108547fb7a80da7efa7ccb196b613892c9cdcb [file] [log] [blame]
/* { dg-additional-options "-Wno-implicit-int" } */
extern void foo (void *) __attribute__((nonnull));
void
en (jm)
{
}
void
p2 ()
{
char *rl = 0;
en ();
foo (rl); /* { dg-warning "use of NULL 'rl' where non-null expected" } */
}