Sign in
fuchsia
/
third_party
/
cmake
/
refs/heads/upstream/master
/
.
/
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
};
}