1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:57:44 +00:00

Tests: Remove StringView char const* initialization test

We now explicitly disallow this.
This commit is contained in:
sin-ack 2022-07-11 20:51:09 +00:00 committed by Andreas Kling
parent 604aac531c
commit d16544100f

View file

@ -181,12 +181,6 @@ TEST_CASE(constexpr_stuff)
constexpr StringView test_constexpr { "foo"sv };
do_test();
}
{
// Can initialize from char const*.
constexpr StringView test_constexpr { "foo" };
do_test();
}
#undef do_test
}