mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-05 16:59:41 +00:00
16 lines
168 B
C
16 lines
168 B
C
|
struct A {
|
||
|
union {
|
||
|
struct {
|
||
|
int x;
|
||
|
};
|
||
|
struct {
|
||
|
long y;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
void fun(struct A * a) {
|
||
|
a->x = 0;
|
||
|
a->y = 0x0102030405060708ULL;
|
||
|
}
|