blob: 4f477449d6a2844ba44c0dade0088148f753d970 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <mutex>
11
12// template <class Mutex> class unique_lock;
13
14// unique_lock& operator=(unique_lock const&) = delete;
15
16#include <mutex>
17#include <cassert>
18
Dan Albert1d4a1ed2016-05-25 22:36:09 -070019std::mutex m0;
20std::mutex m1;
21
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022int main()
23{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070024 std::unique_lock<std::mutex> lk0(m0);
25 std::unique_lock<std::mutex> lk1(m1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026 lk1 = lk0;
27 assert(lk1.mutex() == &m0);
28 assert(lk1.owns_lock() == true);
29 assert(lk0.mutex() == nullptr);
30 assert(lk0.owns_lock() == false);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000031}