mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
16 lines
166 B
C
16 lines
166 B
C
|
struct Foo {
|
||
|
unsigned a;
|
||
|
unsigned b;
|
||
|
unsigned c;
|
||
|
};
|
||
|
|
||
|
struct Bar {
|
||
|
union {
|
||
|
void **a;
|
||
|
struct Foo b;
|
||
|
}u;
|
||
|
};
|
||
|
|
||
|
struct Bar test = {0};
|
||
|
|