mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01: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};
|
|
|