rt_gccstream/gcc/testsuite/gcc.c-torture/compile/961031-1.c

17 lines
119 B
C

struct s {
double d;
} sd;
struct s g () __attribute__ ((const));
struct s
g ()
{
return sd;
}
f ()
{
g ();
}