Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / warn / nonnull1.C
blob46de7e9312c64f7b87668c109925e1c592e57ada
1 // Test that "nonnull" attribute works for C++.
2 // Origin: Joseph Myers <jsm@polyomino.org.uk>
3 // { dg-do compile }
4 // { dg-options "-Wall" }
6 // The "nonnull" attribute is thoroughly tested for C, so here we
7 // simply test that it works at all, as at one point the relevant
8 // checking code was only called for C.
10 extern void f (char *) __attribute__((nonnull));
12 void
13 g ()
15   f (0); // { dg-warning "null" "null argument" }