2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-D.c
blobea957e49e98a9211df2c3c6aaae10909e472b8ef
1 /* Test we do not warn about initializing variable with self. */
2 /* { dg-do compile } */
3 /* { dg-options "-O -Wuninitialized" } */
5 int f()
7 int i = i;
8 return i;