blob: 432e07b9aca3a867403b5eb54a487502baeb211e [file] [log] [blame]
// Build don't link:
// Origin: Ulrich Drepper <drepper@cygnus.com>
// Special g++ Options: -w
struct st
{
int a;
};
int
foo (int a)
{
static const st i = { 0 };
if (i.a == a)
return 0;
}