1 // { dg-do assemble  }
2 // Origin: Ulrich Drepper <drepper@cygnus.com>
3 
4 struct st
5 {
6   int a, b, c, d;
7 };
8 
g()9 void g ()
10 {
11   static const st i = { 0,1,2,3 };
12 }
13 
h()14 void h ()
15 {
16   static const st i = { 0,1,2,3 };
17 }
18