You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
287 B

/*
* Copyright (c) 2013 - Facebook.
* All rights reserved.
*/
#include<stdio.h>
struct { int a; int b; } *x;
union {
int e;
int f;
struct { int w; int u;} g;
int h;
} y;
int main() {
int l;
x->a=1;
y.f =7;
y.g.u=y.f;
y.g.w = x->b;
return 0;
}