(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wnonnull1.C
// { dg-options -Wnonnull }

void g(void *) __attribute__ ((nonnull (1)));
void f(void *p)
{
  g(1 == 1 ? p : 0);
}