mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +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};
|
||
|
|