1// { dg-do assemble  }
2// { dg-options "-w" }
3// Origin: Ulrich Drepper <drepper@cygnus.com>
4
5struct st
6{
7  int a;
8};
9
10int
11foo (int a)
12{
13  static const st i = { 0 };
14
15  if (i.a == a)
16    return 0;
17}
18