Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
RunCMake
/
Tutorial
/
inspect.cpp
blob: e24c2f5ac4e0c96ba988d73ef049fdc0f2a00620 [
file
] [
log
] [
blame
] [
edit
]
#include
<format>
#include
<string>
#include
<string_view>
int
main
()
{
std
::
string s
{
std
::
format
(
"inspect"
)
};
std
::
string_view v
{
s
};
}