summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/filesystem/test/odr1_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/filesystem/test/odr1_test.cpp')
-rw-r--r--src/boost/libs/filesystem/test/odr1_test.cpp22
1 files changed, 22 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 000000000..460df12e9
--- /dev/null
+++ b/src/boost/libs/filesystem/test/odr1_test.cpp
@@ -0,0 +1,22 @@
+// 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();
+}
+} // namespace boost
+
+int main()
+{
+ boost::filesystem::tu2();
+ return 0;
+}