OSDN Git Service

* c-decl.c (grokfield): Allow typedefs for anonymous structs and
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / uninit-D.c
1 /* Test we do not warn about initializing variable with self. */
2 /* { dg-do compile } */
3 /* { dg-options "-O -Wuninitialized" } */
4
5 int f()
6 {
7   int i = i;
8   return i;
9 }