You can't static_cast in this case; https://godbolt.org/z/a1bMbPcaj
You can use `std::bit_cast` to do that in constexpr contexts.
constexpr auto f(uint8_t *x) { return std::bit_cast<char *>(x); }
You can use `std::bit_cast` to do that in constexpr contexts.
https://godbolt.org/z/K3f9b9GGs