From c310174934add8fa7f42ebd76ff45455b53f2b4b Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 23 Feb 2016 17:01:52 +0000 Subject: [PATCH] Add tests for LWG#2560. No code changes, just tests git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@261653 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../meta.unary/meta.unary.prop/is_constructible.pass.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp b/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp index 5401d9553..d08e57d11 100644 --- a/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp +++ b/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp @@ -99,4 +99,13 @@ int main() test_is_not_constructible (); test_is_not_constructible (); test_is_not_constructible (); + +// LWG 2560 + test_is_not_constructible (); +#if TEST_STD_VERS > 11 + test_is_not_constructible (); + test_is_not_constructible (); + test_is_not_constructible (); + test_is_not_constructible (); +#endif }