921e5a0eb4
From-SVN: r14840
17 lines
119 B
C
17 lines
119 B
C
struct s {
|
|
double d;
|
|
} sd;
|
|
|
|
struct s g () __attribute__ ((const));
|
|
|
|
struct s
|
|
g ()
|
|
{
|
|
return sd;
|
|
}
|
|
|
|
f ()
|
|
{
|
|
g ();
|
|
}
|