Mercurial > hg > CbC > GCC_original
view gcc/testsuite/c-c++-common/uninit-E-O0.c @ 16:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
/* Test we do warn about initializing variable with self when -Winit-self is supplied. */ /* { dg-do compile } */ /* { dg-options "-Wuninitialized -Winit-self" } */ int f() { int i = i; /* { dg-warning "i" "uninitialized variable warning" } */ return i; }