blob: 284fb20f9653aaad020568a007689232917fc474 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
template <class T> struct A { A(); };
struct B { A<int> x; };
void a() {
B b;
}
// CHECK: call void @_ZN1BC1Ev
// CHECK: define linkonce_odr unnamed_addr void @_ZN1BC1Ev
// CHECK: call void @_ZN1AIiEC1Ev