aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/uninit-I.c
blob: 7be60d786b8e98f632062e7abc4515d8689db7ce (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-O2 -Wuninitialized" } */

int sys_msgctl (void)
{
  struct { int mode; } setbuf;  /* { dg-warning "'setbuf\.mode' is used" } */
  return setbuf.mode;
}