]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/sync/mutual_exclusion/synchronized_value/copy_assign_pass.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / thread / test / sync / mutual_exclusion / synchronized_value / copy_assign_pass.cpp
1 // Copyright (C) 2013 Vicente J. Botet Escriba
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 // <boost/thread/synchronized_value.hpp>
7
8 // class synchronized_value<T,M>
9
10 // synchronized_value& operator=(synchronized_value const&);
11
12 #define BOOST_THREAD_VERSION 4
13
14 #include <boost/thread/synchronized_value.hpp>
15
16 #include <boost/detail/lightweight_test.hpp>
17
18 int main()
19 {
20
21 {
22 int i = 1;
23 boost::synchronized_value<int> v1(i);
24 boost::synchronized_value<int> v2;
25 v2 = v1;
26 BOOST_TEST(v2.value() == 1);
27 }
28
29 return boost::report_errors();
30 }
31