blob: 501f7dfc0ab824f43fc2c15ac8652c51e1f68f39 [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 timed_mutex;
// timed_mutex();
#include <mutex>
int main()
{
std::timed_mutex m;
}