2016-02-27 03:51:02 +08:00
|
|
|
// RUN: %clang_cc1 %s -fms-extensions -triple x86_64-windows-msvc -emit-llvm -o - | FileCheck %s
|
|
|
|
|
|
|
|
template <typename> struct MessageT { };
|
|
|
|
extern template struct MessageT<int>;
|
|
|
|
|
2018-03-17 04:36:49 +08:00
|
|
|
// CHECK: define weak_odr dso_local dllexport {{.*}} %struct.MessageT* @"??4?$MessageT@H@@QEAAAEAU0@AEBU0@@Z"(
|
2016-02-27 03:51:02 +08:00
|
|
|
template struct __declspec(dllexport) MessageT<int>;
|
|
|
|
// Previously we crashed when this dllexport was the last thing in the file.
|
|
|
|
// DO NOT ADD MORE TESTS AFTER THIS LINE!
|