Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / template-anonymous-union-member-initializer.cpp
blob41ae08470a3deaa040e7af0d3e14bd2402510c3e
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
2 template <typename T>
3 class A
5 union { void *d; };
7 public:
8 A() : d(0) { }
9 };
11 A<int> a0;