blob: 6eec355852d8fcb9f9dddc5268d4ec00a9e44c71 [file] [log] [blame]
struct A {
union {
struct {
int x;
};
struct {
long y;
};
};
};
void fun(struct A * a) {
a->x = 0;
a->y = 0x0102030405060708ULL;
}