brintos

brintos / llvm-project-archived public Read only

0
0
Text · 138 B · 41ae084 Raw
12 lines · cpp
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