]> git.proxmox.com Git - ceph.git/blob - ceph/cmake/modules/FindStdFilesystem_test.cc
import quincy beta 17.1.0
[ceph.git] / ceph / cmake / modules / FindStdFilesystem_test.cc
1 #include <filesystem>
2
3 namespace fs = std::filesystem;
4
5 int main() {
6 fs::create_directory("sandbox");
7 fs::remove_all("sandbox");
8 }