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