blob: 46de7e9312c64f7b87668c109925e1c592e57ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Test that "nonnull" attribute works for C++.
// Origin: Joseph Myers <jsm@polyomino.org.uk>
// { dg-do compile }
// { dg-options "-Wall" }
// The "nonnull" attribute is thoroughly tested for C, so here we
// simply test that it works at all, as at one point the relevant
// checking code was only called for C.
extern void f (char *) __attribute__((nonnull));
void
g ()
{
f (0); // { dg-warning "null" "null argument" }
}
|