//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // UNSUPPORTED: libcpp-has-no-threads // // template class unique_lock; // template // void swap(unique_lock& x, unique_lock& y); #include #include #include "test_macros.h" struct mutex { void lock() {} void unlock() {} }; mutex m; int main(int, char**) { std::unique_lock lk1(m); std::unique_lock lk2; swap(lk1, lk2); assert(lk1.mutex() == nullptr); assert(lk1.owns_lock() == false); assert(lk2.mutex() == &m); assert(lk2.owns_lock() == true); return 0; }