adaa6266fe
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@120057 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
545 B
C++
24 lines
545 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <mutex>
|
|
|
|
// class timed_mutex;
|
|
|
|
// timed_mutex& operator=(const timed_mutex&) = delete;
|
|
|
|
#include <mutex>
|
|
|
|
int main()
|
|
{
|
|
std::timed_mutex m0;
|
|
std::timed_mutex m1;
|
|
m1 = m0;
|
|
}
|