OSDN Git Service

2009-02-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / unit-1.C
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wuninitialized" } */
3
4 struct a { int mode; };
5 int sys_msgctl (void)
6 {
7   struct a setbuf;  /* { dg-warning "'setbuf\.a::mode' is used" } */
8   return setbuf.mode;
9 }
10