1// RUN: %clang_cc1 -emit-llvm -o %t %s2template <typename T>3class A4{5 union { void *d; };6 7public:8 A() : d(0) { }9};10 11A<int> a0;12