Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / warn / Wnonnull1.C
blob0f610f449c72e420a9cfe3c1b18b782deb9cfd57
1 // { dg-options -Wnonnull }
3 void g(void *) __attribute__ ((nonnull (1)));
4 void f(void *p)
6   g(1 == 1 ? p : 0);