]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/boost_install/test/random/quick.cpp
7a743c6b27802cb7312d86c8ef0bb611edb94373
[ceph.git] / ceph / src / boost / tools / boost_install / test / random / quick.cpp
1
2 // Copyright 2017, 2018 Peter Dimov.
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 //
6 // See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt
8
9 #include <boost/random/random_device.hpp>
10 #include <boost/core/lightweight_test.hpp>
11
12 int main()
13 {
14 boost::random::random_device dev;
15
16 BOOST_TEST_NE( dev(), dev() );
17
18 return boost::report_errors();
19 }