binutils-gdb/gdb/testsuite/gdb.cp/anon-union.cc

56 lines
601 B
C++
Raw Normal View History

struct Foo {
union {
int zero;
unsigned int one;
} num1;
1999-08-03 01:48:37 +02:00
struct X {
int rock;
unsigned int rock2;
1999-08-03 01:48:37 +02:00
};
union {
int pebble;
X x;
union {
int qux;
unsigned int mux;
};
unsigned int boulder;
};
union {
int paper;
unsigned int cloth;
};
union {
int two;
unsigned int three;
} num2;
};
union Bar {
int x;
unsigned int y;
};
int main()
{
1999-08-03 01:48:37 +02:00
Foo foo = {0, 0};
foo.paper = 33;
foo.pebble = 44;
foo.mux = 55;
1999-08-03 01:48:37 +02:00
Bar bar = {0};
1999-08-03 01:48:37 +02:00
union {
int z;
unsigned int w;
1999-08-03 01:48:37 +02:00
}; w = 0;
bar.x = 33;
w = 45;
}