]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/filesystem/test/issues/10205.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / filesystem / test / issues / 10205.cpp
1 // Linux test; before running: export LANG=foo
2
3 #include <locale>
4 #include <iostream>
5 #include <string>
6 #include <boost/filesystem/path.hpp>
7
8 int main()
9 {
10 std::string pathname = "/some/filesystem/path/%%%%";
11
12 boost::filesystem::path path(pathname);
13
14 std::wcout << path.wstring() << std::endl;
15
16 return 0;
17 }