freebsd-dev/test/CodeGenCXX/anonymous-union-member-initializer.cpp
2009-10-14 18:03:49 +00:00

13 lines
116 B
C++

// RUN: clang-cc -emit-llvm -o - %s
struct A {
union {
int a;
void* b;
};
A() : a(0) { }
};
A a;