diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 5248d36..1814bd8 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -205,5 +205,7 @@ import testing ; [ compile-fail pointer_cast_dy_fail3.cpp ] [ run sp_nothrow_test.cpp ] + + [ compile make_shared_msvc_test.cpp ] ; } diff --git a/test/make_shared_msvc_test.cpp b/test/make_shared_msvc_test.cpp new file mode 100644 index 0000000..84de4a5 --- /dev/null +++ b/test/make_shared_msvc_test.cpp @@ -0,0 +1,19 @@ +// +// make_shared_msvc_test.cpp +// +// Copyright 2017 Peter Dimov +// +// Distributed under the Boost Software License, Version 1.0. +// See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt +// + +template struct value +{ +}; + +#include + +int main() +{ +}