From-SVN: r27026
This commit is contained in:
Jason Merrill 1999-05-19 06:41:46 -04:00
parent 3f969ec092
commit cb6c8ebb73

View File

@ -0,0 +1,12 @@
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;
}