blob: ea3eafc9955320271c1b067bfb07ad4663f81bc5 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -o - %s
struct A {
union {
int a;
void* b;
};
A() : a(0) { }
};
A a;