diff options
Diffstat (limited to 'src/boost/libs/filesystem/test/odr1_test.cpp')
-rw-r--r-- | src/boost/libs/filesystem/test/odr1_test.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/boost/libs/filesystem/test/odr1_test.cpp b/src/boost/libs/filesystem/test/odr1_test.cpp new file mode 100644 index 00000000..4d73e181 --- /dev/null +++ b/src/boost/libs/filesystem/test/odr1_test.cpp @@ -0,0 +1,24 @@ +// Boost Filesystem odr1_test.cpp ----------------------------------------------------// + +// Copyright Beman Dawes 2014. + +// Distributed under the Boost Software License, Version 1.0. +// See http://www.boost.org/LICENSE_1_0.txt + +// Library home page: http://www.boost.org/libs/filesystem + +#include <boost/filesystem.hpp> + +namespace boost +{ + namespace filesystem + { + void tu2(); + } +} + +int main() +{ + boost::filesystem::tu2(); + return 0; +} |