mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-12 06:31:14 +00:00
8152d183d2
llvm-svn: 8997
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};
|
|
|