blob: 7c61a2030674033dd79bf1d0affe5fac5982576f [file] [log] [blame]
struct foo
{
int *v;
};
int test (void)
{
struct foo f = {};
return *f.v; /* { dg-warning "dereference of NULL" } */
}