Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions tests/std/tests/P0898R3_concepts/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1425,9 +1425,6 @@ namespace test_constructible_from {
STATIC_ASSERT(test<int&, ExplicitTo<int&>>());
STATIC_ASSERT(test<int const&, ExplicitTo<int&>>());
STATIC_ASSERT(test<int const&, ExplicitTo<int&>&>());
#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
STATIC_ASSERT(test<int const&, ExplicitTo<int&&>>());
#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)

struct Multiparameter {
explicit Multiparameter(int);
Expand Down Expand Up @@ -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<int&, ExplicitTo<int&>>());
#if defined(__clang__) // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
STATIC_ASSERT(test<int const&, ExplicitTo<int&&>>());
#endif // TRANSITION, VSO-1357053 (MSVC) and VSO-1357056 (EDG)
STATIC_ASSERT(test<int&&, ExplicitTo<int&&>>());

// Binding through temporary behaves like copy-initialization,
Expand Down