Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
c-c++-common
/
uninit-D-O0.c
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
;
}