diff --git a/tests/std/tests/P0088R3_variant/test.cpp b/tests/std/tests/P0088R3_variant/test.cpp index 4e4e0cd18e..7c71757d6c 100644 --- a/tests/std/tests/P0088R3_variant/test.cpp +++ b/tests/std/tests/P0088R3_variant/test.cpp @@ -7673,10 +7673,10 @@ namespace msvc { }; using VarTestConv = std::variant; -#if defined(__clang__) || defined(__EDG__) // TRANSITION, DevCom-10111923 and DevCom-10112408 +#if defined(__clang__) || defined(__EDG__) // TRANSITION, DevCom-10112408 assert(std::visit(std::identity{}, VarTestConv{convertible_to_immobile_one{}}).x == 1729); assert(std::visit(std::identity{}, VarTestConv{convertible_to_immobile_other{}}).x == 1138); -#endif // TRANSITION, DevCom-10111923 and DevCom-10112408 +#endif // TRANSITION, DevCom-10112408 auto immobile_converter = [](auto src) -> immobile_data { return src; }; assert(std::visit(immobile_converter, VarTestConv{convertible_to_immobile_one{}}).x == 1729); assert(std::visit(immobile_converter, VarTestConv{convertible_to_immobile_other{}}).x == 1138);