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