blob: 761f65b485b1f97238133f990c9147cf2124415e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wuninitialized" } */
int sys_msgctl (void)
{
struct { int mode; } setbuf;
return setbuf.mode; /* { dg-warning "'setbuf\.mode' is used uninitialized in this function" } */
}