[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / default-constructor-template-member.cpp
blobd60d0bee15180751a4dc1f0f6708b43f2ec06285
1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
3 template <class T> struct A { A(); };
4 struct B { A<int> x; };
5 void a() {
6 B b;
9 // CHECK: call {{.*}} @_ZN1BC1Ev
10 // CHECK: define linkonce_odr {{.*}} @_ZN1BC1Ev(ptr {{.*}}%this) unnamed_addr
11 // CHECK: call {{.*}} @_ZN1AIiEC1Ev