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