struct one {
	int a;
};

struct two {
	int b;
};

struct three {
	struct one;
	struct two;
};

int main(void)
{
	struct three c;
	c.a = 5;
	c.b = 1;
	return 0;
}
