Skip to content

Commit 441d567

Browse files
authored
Remove constructible_from test case (#2107)
1 parent ceaa6c2 commit 441d567

File tree

1 file changed

+0
-6
lines changed
  • tests/std/tests/P0898R3_concepts

1 file changed

+0
-6
lines changed

tests/std/tests/P0898R3_concepts/test.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1425,9 +1425,6 @@ namespace test_constructible_from {
14251425
STATIC_ASSERT(test<int&, ExplicitTo<int&>>());
14261426
STATIC_ASSERT(test<int const&, ExplicitTo<int&>>());
14271427
STATIC_ASSERT(test<int const&, ExplicitTo<int&>&>());
1428-
#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
1429-
STATIC_ASSERT(test<int const&, ExplicitTo<int&&>>());
1430-
#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
14311428

14321429
struct Multiparameter {
14331430
explicit Multiparameter(int);
@@ -1457,9 +1454,6 @@ namespace test_constructible_from {
14571454
// Binding through reference-compatible type is required to perform
14581455
// direct-initialization as described in N4849 [over.match.ref]/1.1:
14591456
STATIC_ASSERT(test<int&, ExplicitTo<int&>>());
1460-
#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
1461-
STATIC_ASSERT(test<int const&, ExplicitTo<int&&>>());
1462-
#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
14631457
STATIC_ASSERT(test<int&&, ExplicitTo<int&&>>());
14641458

14651459
// Binding through temporary behaves like copy-initialization,

0 commit comments

Comments
 (0)