rt_gccstream/gcc/testsuite/gcc.dg/uninit-12.c

13 lines
175 B
C

/* PR 23497 */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
typedef _Complex float C;
C foo()
{
C f;
__real__ f = 0;
__imag__ f = 0;
return f;
}