summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/microsoft-abi-structors-delayed-template.cpp
blob: 6c4f37052d152cc30c8602fd4310a3ea31c147d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -emit-llvm -fdelayed-template-parsing -std=c++11 -o - -triple=i386-pc-win32 %s > %t
// RUN: FileCheck %s < %t

// PR20671
namespace vtable_referenced_from_template {
struct ImplicitCtor {
  virtual ~ImplicitCtor();
};
template <class T> void foo(T t) { new ImplicitCtor; }
void bar() { foo(0); }
// CHECK: store {{.*}} @"??_7ImplicitCtor@vtable_referenced_from_template@@6B@"
}