1struct s {
2  double d;
3} sd;
4
5struct s g () __attribute__ ((const));
6
7struct s
8g ()
9{
10  return sd;
11}
12
13f ()
14{
15  g ();
16}
17