summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/boost_install/test/chrono/quick.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/boost_install/test/chrono/quick.cpp')
-rw-r--r--src/boost/tools/boost_install/test/chrono/quick.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/boost/tools/boost_install/test/chrono/quick.cpp b/src/boost/tools/boost_install/test/chrono/quick.cpp
new file mode 100644
index 000000000..c5c0c0dda
--- /dev/null
+++ b/src/boost/tools/boost_install/test/chrono/quick.cpp
@@ -0,0 +1,16 @@
+
+// Copyright 2018 Peter Dimov.
+//
+// Distributed under the Boost Software License, Version 1.0.
+//
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+
+#include <boost/chrono.hpp>
+#include <iostream>
+
+int main()
+{
+ std::cout << boost::chrono::system_clock::now() << std::endl;
+ std::cout << boost::chrono::steady_clock::now() << std::endl;
+}