]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/filesystem/test/issues/9054_static_const_codecvt_segfault_pre_main.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / filesystem / test / issues / 9054_static_const_codecvt_segfault_pre_main.cpp
1 #include "boost/filesystem.hpp"
2
3 static const boost::filesystem::path::codecvt_type &dummy =
4 boost::filesystem::path::codecvt();
5
6 int main()
7 {
8 return 0;
9 }
10