rt_gccstream/gcc/testsuite/gcc.dg/uninit-G-O0.c

10 lines
204 B
C

/* Test we do not warn about initializing variable with address of self in the initialization. */
/* { dg-do compile } */
/* { dg-options "-Wuninitialized" } */
void *f()
{
void *i = &i;
return i;
}