12 lines
146 B
C++
12 lines
146 B
C++
#include <filesystem>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
std::filesystem::path p { "foo" };
|
|
return 0;
|
|
}
|