blob: e24c2f5ac4e0c96ba988d73ef049fdc0f2a00620 [file] [log] [blame]
#include <format>
#include <string>
#include <string_view>
int main()
{
std::string s{ std::format("inspect") };
std::string_view v{ s };
}