blob: 215696405a4faed232db179a1ddc4a1551e0f630 [file] [log] [blame]
Stephen Linf7568822013-06-18 20:51:51 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
Eli Friedman721e77d2009-12-07 00:22:08 +00002
3template <class T> struct A { A(); };
4struct B { A<int> x; };
5void a() {
6 B b;
7}
Stephen Linb987eda2013-06-18 20:24:04 +00008
Stephen Linf7568822013-06-18 20:51:51 +00009// CHECK: call {{.*}} @_ZN1BC1Ev
10// CHECK: define linkonce_odr {{.*}} @_ZN1BC1Ev(%struct.B* {{.*}}%this) unnamed_addr
11// CHECK: call {{.*}} @_ZN1AIiEC1Ev