blob: 41ae08470a3deaa040e7af0d3e14bd2402510c3e [file] [log] [blame]
Andrew Top61a84952019-04-30 15:07:33 -07001// RUN: %clang_cc1 -emit-llvm -o %t %s
2template <typename T>
3class A
4{
5 union { void *d; };
6
7public:
8 A() : d(0) { }
9};
10
11A<int> a0;