2011-12-22 15:14:10 +00:00

22 lines
473 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>
// struct once_flag;
// constexpr once_flag();
#include <mutex>
int main()
{
std::once_flag f;
}