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