Commit cb6c8ebb by Jason Merrill

new

From-SVN: r27026
parent 3f969ec0
union U {
struct { int i; int j; };
int a[2];
};
int main ()
{
U u;
u.i = 42;
u.a[1] = 24;
return u.j != 24 || u.a[0] != 42;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment