freebsd-dev/test/CodeGenCXX/anonymous-union-member-initializer.cpp
2010-01-01 10:34:51 +00:00

13 lines
118 B
C++

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