rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr37617.c

20 lines
218 B
C

typedef union
{
char *string;
double dval;
float fval;
} yystype;
char *f(void)
{
yystype tok;
tok.dval = 0;
return (tok.string);
}
char *f1(void)
{
yystype tok;
tok.fval = 0;
return (tok.string);
}