blob: c0e2df064764d7a15f8db951b3ef441547922488 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <mutex>
// class recursive_mutex;
// recursive_mutex();
#include <mutex>
int main()
{
std::recursive_mutex m;
}