summaryrefslogtreecommitdiffstats
path: root/Source/Checks/cm_cxx_filesystem.cxx
blob: e508d1c969a3c2fab27aaec8907c7eb4fa4a1d4e (plain)
1
2
3
4
5
6
7
8
9
10

#include <filesystem>

int main()
{
  std::filesystem::path p1("/a/b/c");
  std::filesystem::path p2("/a/b/c");

  return p1 == p2 ? 0 : 1;
}