gcc/gcc/testsuite/c-c++-common/uninit-G.c

11 lines
217 B
C

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