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, defer_lock_t);
20 #include "nasty_containers.h"
22 #include "test_macros.h"
29 std::unique_lock
<M
> lk(m
, std::defer_lock
);
30 assert(lk
.mutex() == std::addressof(m
));
31 assert(lk
.owns_lock() == false);
34 typedef nasty_mutex M
;
36 std::unique_lock
<M
> lk(m
, std::defer_lock
);
37 assert(lk
.mutex() == std::addressof(m
));
38 assert(lk
.owns_lock() == false);