[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / microsoft-abi-structors-delayed-template.cpp
blob6c4f37052d152cc30c8602fd4310a3ea31c147d4
1 // RUN: %clang_cc1 -emit-llvm -fdelayed-template-parsing -std=c++11 -o - -triple=i386-pc-win32 %s > %t
2 // RUN: FileCheck %s < %t
4 // PR20671
5 namespace vtable_referenced_from_template {
6 struct ImplicitCtor {
7 virtual ~ImplicitCtor();
8 };
9 template <class T> void foo(T t) { new ImplicitCtor; }
10 void bar() { foo(0); }
11 // CHECK: store {{.*}} @"??_7ImplicitCtor@vtable_referenced_from_template@@6B@"