1 2 3 4 5 6 7 8 9
#include <format> #include <string> #include <string_view> int main() { std::string s{ std::format("inspect") }; std::string_view v{ s }; }