1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-threads
14 // template <class Mutex> class unique_lock;
16 // unique_lock(mutex_type& m, adopt_lock_t);
20 #include "nasty_containers.h"
22 #include "test_macros.h"
30 std::unique_lock
<M
> lk(m
, std::adopt_lock
);
31 assert(lk
.mutex() == std::addressof(m
));
32 assert(lk
.owns_lock() == true);
35 typedef nasty_mutex M
;
38 std::unique_lock
<M
> lk(m
, std::adopt_lock
);
39 assert(lk
.mutex() == std::addressof(m
));
40 assert(lk
.owns_lock() == true);