Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / 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;