forked from OSchip/llvm-project
13 lines
116 B
C++
13 lines
116 B
C++
|
// RUN: clang-cc -emit-llvm -o - %s
|
||
|
|
||
|
struct A {
|
||
|
union {
|
||
|
int a;
|
||
|
void* b;
|
||
|
};
|
||
|
|
||
|
A() : a(0) { }
|
||
|
};
|
||
|
|
||
|
A a;
|