xref: /aosp_15_r20/external/clang/test/CodeGenCXX/template-anonymous-union-member-initializer.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
2 template <typename T>
3 class A
4 {
5     union { void *d; };
6 
7 public:
A()8     A() : d(0) { }
9 };
10 
11 A<int> a0;
12