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