mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-09 06:42:18 +08:00
11 lines
143 B
C++
11 lines
143 B
C++
|
|
#include <filesystem>
|
|
|
|
int main()
|
|
{
|
|
std::filesystem::path p1("/a/b/c");
|
|
std::filesystem::path p2("/a/b/c");
|
|
|
|
return p1 == p2 ? 0 : 1;
|
|
}
|