blob: 8c5d26675d3f337210e6c3361f22320b1e568636 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
// <mutex>
// class recursive_mutex;
// recursive_mutex();
#include <mutex>
int main()
{
std::recursive_mutex m;
}