summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindStdFilesystem_test.cc
blob: 413ac31796e227a3d5535f6aca06c803f2b0d3a3 (plain)
1
2
3
4
5
6
7
8
#include <filesystem>

namespace fs = std::filesystem;

int main() {
    fs::create_directory("sandbox");
    fs::remove_all("sandbox");
}