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
Notes: sideshowbarker 2024-07-17 09:26:35 +09:00

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
}