extern struct Y {
int n;
float f;
} y1;
enum E { e1 };
struct X {
} x1;
int f() {
return y1.n + e1 + y1.f + x1.n;
}