blob: 921113a148414853e62f8a360c1721425ac55947 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -emit-llvm -o %t %s
2template <typename T>
3class A
4{
5 union { void *d; };
6
7 A() : d(0) { }
8};
9
10A<int> a0;