Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / uninit-G-O0.c
blobd6edffede66d020146ea36f36186bb640a2e4386
1 /* Test we do not warn about initializing variable with address of self in the initialization. */
2 /* { dg-do compile } */
3 /* { dg-options "-Wuninitialized" } */
5 void *f()
7 void *i = &i;
8 return i;