blob: ea957e49e98a9211df2c3c6aaae10909e472b8ef [file] [log] [blame]
/* Test we do not warn about initializing variable with self. */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
int f()
{
int i = i;
return i;
}