#include <filesystem>
int
main (int argc, char **argv)
{
(void)argc;
(void)argv;
std::filesystem::path p { "foo" };
return 0;
}