From 53abcbd8a90c88a7dba0c333c2e7068f339c4e13 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 3 Oct 2016 23:39:52 +0000 Subject: [PATCH] Add tests to make sure that is_constructible is false. We already checked 'unqualified void'. This was brought up by LWG#2738 llvm-svn: 283161 --- .../meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp index 7235538..7f5ab72 100644 --- a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp @@ -116,6 +116,9 @@ int main() #endif test_is_not_constructible (); test_is_not_constructible (); + test_is_not_constructible (); // LWG 2738 + test_is_not_constructible (); + test_is_not_constructible (); test_is_not_constructible (); test_is_not_constructible (); test_is_not_constructible (); -- 2.7.4