1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // UNSUPPORTED: libcpp-has-no-threads
11 
12 // <mutex>
13 
14 // template <class Mutex> class unique_lock;
15 
16 // unique_lock(unique_lock&& u);
17 
18 #include <mutex>
19 #include <cassert>
20 
21 std::mutex m;
22 
main()23 int main()
24 {
25 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
26     std::unique_lock<std::mutex> lk0(m);
27     std::unique_lock<std::mutex> lk = std::move(lk0);
28     assert(lk.mutex() == &m);
29     assert(lk.owns_lock() == true);
30     assert(lk0.mutex() == nullptr);
31     assert(lk0.owns_lock() == false);
32 #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
33 }
34