#include <catch2/catch.hpp>

TEST_CASE()
{
    auto const empty = std::string("");
    CHECK(empty[0] == 'C'); // Logic error: bad character access
}