blob: 543b714163ba8908c6358679c5a1543e9c1cc1c5 [file] [log] [blame]
// Origin: Mark Mitchell <mark@codesourcery.com>
struct A
{
union
{
int i;
};
int j;
A ();
};
A::A ()
: i (1), j (i = 0)
{
}
int main ()
{
A a;
return a.i;
}