From 441d567fde96146682cb4cb5ee8dbb0e91825aa7 Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Mon, 16 Aug 2021 20:26:05 -0700 Subject: [PATCH] Remove constructible_from test case (#2107) --- tests/std/tests/P0898R3_concepts/test.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/std/tests/P0898R3_concepts/test.cpp b/tests/std/tests/P0898R3_concepts/test.cpp index 777e49822..293a7e6b4 100644 --- a/tests/std/tests/P0898R3_concepts/test.cpp +++ b/tests/std/tests/P0898R3_concepts/test.cpp @@ -1425,9 +1425,6 @@ namespace test_constructible_from { STATIC_ASSERT(test>()); STATIC_ASSERT(test>()); STATIC_ASSERT(test&>()); -#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG) - STATIC_ASSERT(test>()); -#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG) struct Multiparameter { explicit Multiparameter(int); @@ -1457,9 +1454,6 @@ namespace test_constructible_from { // Binding through reference-compatible type is required to perform // direct-initialization as described in N4849 [over.match.ref]/1.1: STATIC_ASSERT(test>()); -#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG) - STATIC_ASSERT(test>()); -#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG) STATIC_ASSERT(test>()); // Binding through temporary behaves like copy-initialization,