Files
filesystem/test/issues/9054_static_const_codecvt_segfault_pre_main.cpp
2014-08-04 16:56:14 -04:00

11 lines
160 B
C++

#include "boost/filesystem.hpp"
static const boost::filesystem::path::codecvt_type &dummy =
boost::filesystem::path::codecvt();
int main()
{
return 0;
}