blob: e1bb50b3627cc3d7a0ac6604764d0ad7baa38262 [file] [log] [blame]
// Build don't link:
// Origin: Ulrich Drepper <drepper@cygnus.com>
struct st
{
int a, b, c, d;
};
void g ()
{
static const st i = { 0,1,2,3 };
}
void h ()
{
static const st i = { 0,1,2,3 };
}