blob: 1bfe75b2f6cd8d2bbc6aaf4e53094698df5e0ccd [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -Wuninitialized" } */
struct a { int mode; };
int sys_msgctl (void)
{
struct a setbuf; /* { dg-warning "'setbuf\.a::mode' is used" } */
return setbuf.mode;
}